R Markdown

library(readr)
## Warning: package 'readr' was built under R version 3.4.4
credit <- read.csv("creditData.csv")
sum(is.na(credit))
## [1] 0
credit$Creditability <- as.factor(credit$Creditability)
summary(credit)
##  Creditability Account.Balance Duration.of.Credit..month.
##  0:300         Min.   :1.000   Min.   : 4.0              
##  1:700         1st Qu.:1.000   1st Qu.:12.0              
##                Median :2.000   Median :18.0              
##                Mean   :2.577   Mean   :20.9              
##                3rd Qu.:4.000   3rd Qu.:24.0              
##                Max.   :4.000   Max.   :72.0              
##  Payment.Status.of.Previous.Credit    Purpose       Credit.Amount  
##  Min.   :0.000                     Min.   : 0.000   Min.   :  250  
##  1st Qu.:2.000                     1st Qu.: 1.000   1st Qu.: 1366  
##  Median :2.000                     Median : 2.000   Median : 2320  
##  Mean   :2.545                     Mean   : 2.828   Mean   : 3271  
##  3rd Qu.:4.000                     3rd Qu.: 3.000   3rd Qu.: 3972  
##  Max.   :4.000                     Max.   :10.000   Max.   :18424  
##  Value.Savings.Stocks Length.of.current.employment Instalment.per.cent
##  Min.   :1.000        Min.   :1.000                Min.   :1.000      
##  1st Qu.:1.000        1st Qu.:3.000                1st Qu.:2.000      
##  Median :1.000        Median :3.000                Median :3.000      
##  Mean   :2.105        Mean   :3.384                Mean   :2.973      
##  3rd Qu.:3.000        3rd Qu.:5.000                3rd Qu.:4.000      
##  Max.   :5.000        Max.   :5.000                Max.   :4.000      
##  Sex...Marital.Status   Guarantors    Duration.in.Current.address
##  Min.   :1.000        Min.   :1.000   Min.   :1.000              
##  1st Qu.:2.000        1st Qu.:1.000   1st Qu.:2.000              
##  Median :3.000        Median :1.000   Median :3.000              
##  Mean   :2.682        Mean   :1.145   Mean   :2.845              
##  3rd Qu.:3.000        3rd Qu.:1.000   3rd Qu.:4.000              
##  Max.   :4.000        Max.   :3.000   Max.   :4.000              
##  Most.valuable.available.asset  Age..years.    Concurrent.Credits
##  Min.   :1.000                 Min.   :19.00   Min.   :1.000     
##  1st Qu.:1.000                 1st Qu.:27.00   1st Qu.:3.000     
##  Median :2.000                 Median :33.00   Median :3.000     
##  Mean   :2.358                 Mean   :35.54   Mean   :2.675     
##  3rd Qu.:3.000                 3rd Qu.:42.00   3rd Qu.:3.000     
##  Max.   :4.000                 Max.   :75.00   Max.   :3.000     
##  Type.of.apartment No.of.Credits.at.this.Bank   Occupation   
##  Min.   :1.000     Min.   :1.000              Min.   :1.000  
##  1st Qu.:2.000     1st Qu.:1.000              1st Qu.:3.000  
##  Median :2.000     Median :1.000              Median :3.000  
##  Mean   :1.928     Mean   :1.407              Mean   :2.904  
##  3rd Qu.:2.000     3rd Qu.:2.000              3rd Qu.:3.000  
##  Max.   :3.000     Max.   :4.000              Max.   :4.000  
##  No.of.dependents   Telephone     Foreign.Worker 
##  Min.   :1.000    Min.   :1.000   Min.   :1.000  
##  1st Qu.:1.000    1st Qu.:1.000   1st Qu.:1.000  
##  Median :1.000    Median :1.000   Median :1.000  
##  Mean   :1.155    Mean   :1.404   Mean   :1.037  
##  3rd Qu.:1.000    3rd Qu.:2.000   3rd Qu.:1.000  
##  Max.   :2.000    Max.   :2.000   Max.   :2.000

Dividing data, 75% to train, 25% to test

set.seed(12345)
credit_rand<- credit [order(runif(1000)),]
credit_train<- credit_rand[1:750,]
credit_test<- credit_rand[751:1000,]
prop.table(table(credit_train$Creditability))
## 
##         0         1 
## 0.3146667 0.6853333
prop.table(table(credit_test$Creditability))
## 
##     0     1 
## 0.256 0.744
credit
##      Creditability Account.Balance Duration.of.Credit..month.
## 1                1               1                         18
## 2                1               1                          9
## 3                1               2                         12
## 4                1               1                         12
## 5                1               1                         12
## 6                1               1                         10
## 7                1               1                          8
## 8                1               1                          6
## 9                1               4                         18
## 10               1               2                         24
## 11               1               1                         11
## 12               1               1                         30
## 13               1               1                          6
## 14               1               2                         48
## 15               1               1                         18
## 16               1               1                          6
## 17               1               1                         11
## 18               1               2                         18
## 19               1               2                         36
## 20               1               4                         11
## 21               1               1                          6
## 22               1               2                         12
## 23               0               2                         36
## 24               1               2                         12
## 25               1               1                          6
## 26               1               2                         11
## 27               1               1                         12
## 28               1               2                          9
## 29               1               4                         15
## 30               1               3                         42
## 31               1               3                         30
## 32               1               4                         36
## 33               1               4                         36
## 34               1               4                         24
## 35               1               1                         15
## 36               1               1                          6
## 37               1               4                         12
## 38               1               4                         12
## 39               1               4                         18
## 40               1               4                         24
## 41               1               4                         12
## 42               1               1                         24
## 43               1               4                         18
## 44               1               2                         24
## 45               1               2                         18
## 46               0               1                         18
## 47               1               4                         24
## 48               0               4                         18
## 49               1               4                         24
## 50               1               1                         24
## 51               1               4                         12
## 52               1               3                         36
## 53               1               4                          9
## 54               1               4                         12
## 55               1               4                         24
## 56               1               1                         12
## 57               1               4                         12
## 58               1               1                         15
## 59               1               4                         21
## 60               1               4                         36
## 61               1               4                         12
## 62               1               4                         24
## 63               1               4                         48
## 64               1               4                         36
## 65               1               1                         12
## 66               1               4                          6
## 67               1               4                         12
## 68               1               4                         24
## 69               1               2                         12
## 70               1               4                         24
## 71               1               2                         21
## 72               1               4                         30
## 73               1               4                         36
## 74               1               4                         24
## 75               1               3                         12
## 76               1               2                          9
## 77               1               4                         21
## 78               1               4                         24
## 79               1               1                         21
## 80               1               4                         15
## 81               1               4                         24
## 82               1               4                         36
## 83               1               2                         18
## 84               1               3                         15
## 85               1               4                         15
## 86               1               1                         12
## 87               1               4                         24
## 88               1               4                         36
## 89               1               1                          6
## 90               1               2                         24
## 91               1               2                         12
## 92               1               2                         30
## 93               1               2                         30
## 94               1               1                          9
## 95               1               2                         18
## 96               1               4                         27
## 97               1               2                         12
## 98               0               2                         36
## 99               1               1                          9
## 100              1               2                         42
## 101              1               4                         24
## 102              1               1                         15
## 103              1               2                         24
## 104              1               2                         36
## 105              1               4                         24
## 106              1               4                         24
## 107              1               4                         12
## 108              1               4                         18
## 109              1               4                         24
## 110              1               4                         12
## 111              0               1                         15
## 112              1               1                          6
## 113              1               2                         12
## 114              1               4                         12
## 115              1               2                         21
## 116              1               2                         18
## 117              1               2                          9
## 118              1               4                         24
## 119              1               4                          9
## 120              1               4                         24
## 121              1               2                         36
## 122              1               4                         36
## 123              1               2                          6
## 124              1               4                         15
## 125              1               4                         15
## 126              1               4                         24
## 127              1               4                         15
## 128              1               4                          6
## 129              1               4                         18
## 130              1               4                         24
## 131              1               3                         24
## 132              1               4                         18
## 133              1               3                          6
## 134              1               4                         18
## 135              1               4                         10
## 136              1               4                          6
## 137              1               2                         12
## 138              1               1                         24
## 139              1               2                          6
## 140              1               3                         24
## 141              1               4                         36
## 142              1               4                          9
## 143              1               2                         24
## 144              1               4                          9
## 145              1               4                         36
## 146              1               4                         21
## 147              1               1                         24
## 148              1               1                         12
## 149              1               4                         12
## 150              1               2                         24
## 151              1               3                         12
## 152              1               4                         12
## 153              1               4                         48
## 154              1               2                         24
## 155              1               2                         12
## 156              1               4                         24
## 157              1               1                         12
## 158              1               4                         30
## 159              0               2                         48
## 160              1               2                         12
## 161              1               4                         12
## 162              1               3                         24
## 163              1               4                         24
## 164              1               4                         15
## 165              1               3                         15
## 166              1               4                          9
## 167              1               4                         30
## 168              1               4                         24
## 169              1               4                         15
## 170              1               4                          6
## 171              1               3                         36
## 172              0               1                         12
## 173              1               3                         12
## 174              1               4                         24
## 175              1               4                         12
## 176              1               4                         24
## 177              1               4                         24
## 178              1               2                         12
## 179              1               4                         18
## 180              1               4                         48
## 181              1               4                          9
## 182              1               4                         18
## 183              1               1                         30
## 184              1               4                         30
## 185              1               4                          9
## 186              1               4                         36
## 187              1               4                         12
## 188              1               4                         24
## 189              1               2                         36
## 190              1               3                         21
## 191              1               4                         24
## 192              1               2                         36
## 193              1               2                         48
## 194              1               4                         24
## 195              1               4                         12
## 196              1               4                         33
## 197              1               4                          6
## 198              1               4                         18
## 199              1               4                         12
## 200              1               4                         48
## 201              1               4                         30
## 202              1               4                         28
## 203              1               3                         18
## 204              1               1                         24
## 205              1               1                         21
## 206              1               2                         18
## 207              1               1                         12
## 208              1               2                         15
## 209              1               2                         48
## 210              1               4                          9
## 211              1               3                          4
## 212              1               1                         24
## 213              1               1                         24
## 214              1               3                          6
## 215              1               2                          9
## 216              1               3                         10
## 217              1               4                         10
## 218              1               3                          6
## 219              1               1                         47
## 220              1               4                         10
## 221              1               1                         18
## 222              1               3                         30
## 223              1               4                         24
## 224              1               4                         27
## 225              1               1                         18
## 226              1               4                         24
## 227              1               1                         18
## 228              1               4                         14
## 229              1               4                         21
## 230              1               2                         48
## 231              1               4                         24
## 232              1               4                          6
## 233              1               4                         39
## 234              1               1                         30
## 235              0               2                         12
## 236              1               1                         24
## 237              1               4                         21
## 238              1               1                         24
## 239              1               4                          4
## 240              1               4                         39
## 241              1               4                         15
## 242              1               4                         60
## 243              1               4                         18
## 244              1               4                         18
## 245              1               4                          6
## 246              1               4                         24
## 247              1               4                         18
## 248              1               4                         24
## 249              1               2                         15
## 250              1               4                         21
## 251              1               2                         18
## 252              1               2                         18
## 253              1               4                         12
## 254              1               4                         36
## 255              1               4                         36
## 256              1               3                         15
## 257              1               1                         15
## 258              1               4                         10
## 259              1               1                         10
## 260              1               4                          5
## 261              1               4                         15
## 262              1               4                         11
## 263              1               3                         10
## 264              1               4                          9
## 265              1               4                         12
## 266              1               4                         22
## 267              1               2                          9
## 268              1               4                         36
## 269              1               4                         12
## 270              1               4                         15
## 271              1               4                          6
## 272              1               4                         36
## 273              1               4                          6
## 274              1               4                         24
## 275              1               4                         24
## 276              1               4                         12
## 277              1               4                         15
## 278              1               2                         21
## 279              1               1                         24
## 280              1               3                          9
## 281              1               3                          6
## 282              1               3                         12
## 283              1               4                         12
## 284              1               2                         21
## 285              1               1                         21
## 286              1               4                          6
## 287              1               1                          6
## 288              1               4                          9
## 289              1               4                          9
## 290              1               4                         15
## 291              1               4                         12
## 292              1               4                         15
## 293              1               4                          6
## 294              1               2                          6
## 295              1               4                         15
## 296              1               4                         36
## 297              1               4                          9
## 298              1               4                          6
## 299              1               2                         12
## 300              1               4                         18
## 301              1               1                         12
## 302              1               3                         24
## 303              1               3                         24
## 304              1               4                          9
## 305              0               3                          9
## 306              1               4                         24
## 307              1               1                          6
## 308              1               4                          6
## 309              1               1                         21
## 310              1               4                         54
## 311              1               4                         12
## 312              1               4                         48
## 313              1               4                          6
## 314              1               2                         24
## 315              1               1                          6
## 316              1               4                         15
## 317              1               4                         24
## 318              1               3                         12
## 319              1               4                         15
## 320              1               4                          6
## 321              1               4                         10
## 322              1               4                         12
## 323              1               4                         11
## 324              1               1                         10
## 325              1               4                         10
## 326              1               4                         24
## 327              1               4                         10
## 328              1               3                          6
## 329              1               4                         18
## 330              1               4                         18
## 331              1               4                         24
## 332              1               4                         18
## 333              1               4                          6
## 334              1               4                         22
## 335              1               4                         24
## 336              1               1                         24
## 337              1               1                          9
## 338              1               1                         10
## 339              1               4                         10
## 340              1               4                         12
## 341              1               4                         30
## 342              1               1                         24
## 343              1               4                         18
## 344              1               4                          9
## 345              1               4                         12
## 346              1               4                         10
## 347              1               4                         10
## 348              1               3                         10
## 349              1               1                         12
## 350              1               4                         12
## 351              1               4                         10
## 352              1               4                         24
## 353              1               4                         48
## 354              0               1                         12
## 355              1               4                          6
## 356              1               4                         36
## 357              1               1                         24
## 358              1               4                         10
## 359              1               3                         18
## 360              1               4                         15
## 361              1               4                         12
## 362              1               1                         12
## 363              1               4                          6
## 364              1               4                          9
## 365              1               4                         12
## 366              1               4                         12
## 367              1               3                         24
## 368              1               2                         12
## 369              1               1                         15
## 370              1               1                         24
## 371              1               1                         24
## 372              1               4                         24
## 373              1               2                         24
## 374              1               1                          6
## 375              1               4                         21
## 376              1               1                         27
## 377              0               1                         12
## 378              1               2                         27
## 379              1               2                         15
## 380              1               4                         30
## 381              1               1                         18
## 382              1               1                         21
## 383              1               4                         60
## 384              1               2                          9
## 385              1               4                         42
## 386              1               2                          9
## 387              0               2                          9
## 388              1               4                         24
## 389              1               3                         10
## 390              1               1                         24
## 391              1               4                         15
## 392              1               3                         12
## 393              1               3                          6
## 394              1               4                         15
## 395              1               4                         24
## 396              1               2                          9
## 397              1               2                         24
## 398              1               4                         12
## 399              1               4                         12
## 400              1               2                         12
## 401              1               2                         27
## 402              1               2                         12
## 403              1               1                          6
## 404              1               4                         24
## 405              1               4                         18
## 406              1               2                         48
## 407              1               4                         15
## 408              1               2                          9
## 409              1               2                         18
## 410              1               4                         42
## 411              1               4                         13
## 412              1               4                         24
## 413              1               4                         12
## 414              1               4                         24
## 415              1               4                         12
## 416              1               4                         28
## 417              1               4                         11
## 418              1               4                         24
## 419              1               4                         18
## 420              1               1                         15
## 421              1               4                         12
## 422              1               2                         11
## 423              1               2                         16
## 424              1               4                         12
## 425              1               4                         15
## 426              1               4                         12
## 427              1               2                         39
## 428              0               2                          9
## 429              1               1                         12
## 430              1               2                          9
## 431              1               4                         30
## 432              0               4                         12
## 433              1               2                         15
## 434              1               2                         18
## 435              1               4                         12
## 436              1               4                          7
## 437              1               4                         15
## 438              1               4                          6
## 439              1               1                         27
## 440              1               2                         18
## 441              1               4                         21
## 442              1               4                         27
## 443              1               1                         39
## 444              1               4                         15
## 445              1               4                         12
## 446              1               4                         12
## 447              1               4                          6
## 448              1               4                         12
## 449              1               4                         36
## 450              1               2                          9
## 451              0               2                         12
## 452              1               1                         20
## 453              1               2                         10
## 454              1               2                         24
## 455              1               1                         14
## 456              1               2                         60
## 457              1               2                         20
## 458              1               2                         18
## 459              1               2                         24
## 460              1               4                         12
## 461              1               2                         20
## 462              1               2                         18
## 463              1               4                         15
## 464              0               1                         28
## 465              1               2                         12
## 466              1               3                         12
## 467              1               2                         12
## 468              1               4                         15
## 469              1               2                         36
## 470              1               4                         12
## 471              1               4                         18
## 472              1               4                         24
## 473              1               4                         36
## 474              1               4                         15
## 475              1               3                         36
## 476              1               4                         24
## 477              1               4                         18
## 478              1               4                         24
## 479              1               4                         12
## 480              1               2                         18
## 481              1               4                         27
## 482              1               2                         18
## 483              1               4                         24
## 484              1               4                         12
## 485              1               4                         12
## 486              1               4                         12
## 487              1               4                         18
## 488              1               2                         18
## 489              1               4                         12
## 490              1               4                         12
## 491              1               4                         18
## 492              1               4                         12
## 493              1               1                         18
## 494              1               4                         24
## 495              1               1                         12
## 496              1               4                         24
## 497              1               4                          6
## 498              1               4                         24
## 499              1               4                         12
## 500              1               1                         12
## 501              1               4                         24
## 502              1               4                         24
## 503              1               4                          6
## 504              1               4                         24
## 505              1               4                         24
## 506              1               4                          6
## 507              1               4                         12
## 508              1               4                         24
## 509              1               4                         24
## 510              1               1                          6
## 511              1               4                          6
## 512              1               4                          6
## 513              1               2                         24
## 514              1               2                         30
## 515              1               4                         15
## 516              1               2                         24
## 517              1               2                         24
## 518              0               4                         36
## 519              0               4                         24
## 520              0               4                         36
## 521              0               4                         36
## 522              0               4                         36
## 523              1               4                          6
## 524              1               4                         18
## 525              1               2                         12
## 526              1               4                         36
## 527              1               1                         12
## 528              1               2                         12
## 529              1               4                         18
## 530              1               4                         18
## 531              1               4                          4
## 532              1               4                         24
## 533              1               3                         12
## 534              1               1                         18
## 535              1               1                         18
## 536              1               2                         24
## 537              1               4                          4
## 538              1               4                          4
## 539              1               4                          7
## 540              1               2                         18
## 541              0               2                          9
## 542              1               2                         48
## 543              0               2                         12
## 544              1               2                         18
## 545              1               4                          4
## 546              1               2                          8
## 547              1               2                         30
## 548              1               3                         10
## 549              1               2                         12
## 550              1               4                         12
## 551              1               2                         12
## 552              1               4                         12
## 553              1               4                         12
## 554              1               4                         10
## 555              1               2                         11
## 556              1               4                         33
## 557              1               2                         48
## 558              1               3                         12
## 559              1               4                         24
## 560              1               2                         14
## 561              1               4                         20
## 562              1               4                         18
## 563              0               2                         60
## 564              1               3                         24
## 565              1               4                         30
## 566              1               2                         24
## 567              1               2                         36
## 568              1               4                          6
## 569              1               4                         12
## 570              1               4                         48
## 571              1               3                         12
## 572              1               4                         36
## 573              1               2                         26
## 574              1               2                         30
## 575              1               2                         36
## 576              1               2                         48
## 577              0               1                         36
## 578              0               1                         12
## 579              0               1                         33
## 580              0               1                         42
## 581              0               1                         24
## 582              0               1                         24
## 583              0               4                         24
## 584              0               1                         12
## 585              0               1                         12
## 586              1               1                         24
## 587              1               1                         18
## 588              1               1                         36
## 589              1               1                         18
## 590              1               2                         12
## 591              1               1                         12
## 592              1               1                          8
## 593              0               1                         36
## 594              0               1                         24
## 595              1               1                         30
## 596              1               1                         36
## 597              1               1                         12
## 598              1               1                         21
## 599              1               1                         30
## 600              0               1                         36
## 601              0               1                         36
## 602              1               4                         24
## 603              1               1                          6
## 604              1               1                         12
## 605              0               1                         36
## 606              1               1                         15
## 607              1               2                          6
## 608              1               1                          6
## 609              1               1                         48
## 610              1               2                         24
## 611              0               2                         12
## 612              1               1                         12
## 613              1               1                         12
## 614              1               1                         15
## 615              1               1                         24
## 616              1               1                         12
## 617              1               1                         30
## 618              1               1                         18
## 619              0               1                         30
## 620              1               2                         12
## 621              1               4                         24
## 622              1               4                         24
## 623              1               1                         12
## 624              1               1                         12
## 625              1               1                         24
## 626              1               1                          6
## 627              1               4                         12
## 628              1               4                         18
## 629              1               4                          6
## 630              1               1                         12
## 631              1               1                         15
## 632              1               1                         42
## 633              1               1                         24
## 634              1               1                         36
## 635              1               1                         36
## 636              1               1                         24
## 637              0               1                         12
## 638              1               1                         13
## 639              1               1                         20
## 640              1               1                         24
## 641              1               1                         36
## 642              1               3                         42
## 643              1               1                         24
## 644              0               1                         48
## 645              1               4                         24
## 646              1               1                         36
## 647              1               4                         24
## 648              1               4                         48
## 649              1               2                         30
## 650              1               2                         18
## 651              1               2                         24
## 652              1               2                          6
## 653              1               2                         12
## 654              1               4                         24
## 655              1               2                         48
## 656              1               2                         18
## 657              0               2                         24
## 658              1               2                          6
## 659              1               2                          7
## 660              1               2                          6
## 661              1               2                          8
## 662              1               2                         12
## 663              1               2                         12
## 664              1               2                          6
## 665              1               1                          8
## 666              1               2                         12
## 667              1               2                          7
## 668              1               2                         13
## 669              1               2                         18
## 670              1               2                          7
## 671              1               2                         13
## 672              1               2                         18
## 673              1               2                         18
## 674              1               2                          8
## 675              1               2                         12
## 676              1               3                          6
## 677              1               1                          9
## 678              1               2                         18
## 679              1               2                         15
## 680              1               2                          6
## 681              1               2                         10
## 682              1               2                         12
## 683              1               2                         20
## 684              1               2                         15
## 685              1               1                         12
## 686              1               4                         24
## 687              1               2                         10
## 688              1               2                         36
## 689              1               3                         18
## 690              0               1                         24
## 691              1               4                         60
## 692              1               1                         12
## 693              1               2                          6
## 694              1               4                         15
## 695              1               4                         12
## 696              1               4                         60
## 697              1               3                         12
## 698              1               4                         24
## 699              1               2                         45
## 700              1               1                         24
## 701              0               1                         36
## 702              1               2                         36
## 703              1               1                         18
## 704              1               1                         30
## 705              1               1                          6
## 706              1               4                         15
## 707              1               3                         24
## 708              1               2                         30
## 709              0               1                         48
## 710              1               4                         48
## 711              1               4                         24
## 712              1               1                         42
## 713              1               4                         36
## 714              1               4                          9
## 715              1               4                          6
## 716              1               4                         36
## 717              1               1                         48
## 718              0               4                         24
## 719              0               2                         18
## 720              0               2                         72
## 721              0               2                         48
## 722              1               3                         15
## 723              1               4                         21
## 724              1               4                         36
## 725              1               1                         24
## 726              1               2                         18
## 727              1               4                         21
## 728              1               4                         12
## 729              1               4                         36
## 730              1               2                         60
## 731              1               2                         42
## 732              1               4                         60
## 733              1               4                         15
## 734              1               1                         15
## 735              1               1                         36
## 736              1               4                          6
## 737              1               2                          9
## 738              1               4                         18
## 739              1               2                         15
## 740              1               2                         20
## 741              1               4                         12
## 742              1               4                         12
## 743              0               1                         24
## 744              1               4                         30
## 745              1               4                         30
## 746              1               4                          6
## 747              1               2                         24
## 748              1               4                         24
## 749              1               2                          9
## 750              1               3                         24
## 751              1               2                         36
## 752              0               1                          9
## 753              0               2                          9
## 754              0               2                         24
## 755              0               2                          6
## 756              0               1                         15
## 757              0               1                         24
## 758              0               1                         12
## 759              0               2                         30
## 760              0               2                         36
## 761              0               2                         48
## 762              0               1                         18
## 763              0               4                         21
## 764              0               2                         60
## 765              0               4                         24
## 766              0               4                          9
## 767              0               2                         39
## 768              0               4                         18
## 769              0               2                          9
## 770              0               1                         15
## 771              0               1                         24
## 772              0               1                          9
## 773              0               1                         18
## 774              0               1                         36
## 775              0               1                         36
## 776              0               1                         36
## 777              0               2                         18
## 778              0               1                          6
## 779              0               2                         18
## 780              0               4                         15
## 781              0               2                         30
## 782              0               1                         24
## 783              0               2                         36
## 784              0               2                          6
## 785              0               1                         12
## 786              0               4                         24
## 787              0               2                          6
## 788              0               2                         15
## 789              0               2                         24
## 790              0               2                         24
## 791              0               2                         15
## 792              0               3                         15
## 793              0               1                         24
## 794              0               1                         12
## 795              0               3                         30
## 796              0               2                         36
## 797              0               3                         18
## 798              0               3                         21
## 799              0               1                         24
## 800              0               3                         24
## 801              0               1                         24
## 802              0               1                         24
## 803              0               1                         24
## 804              0               2                         18
## 805              0               1                         12
## 806              0               1                         24
## 807              0               2                         18
## 808              0               1                         60
## 809              0               1                         24
## 810              0               1                          6
## 811              0               2                         48
## 812              0               1                         60
## 813              0               4                         18
## 814              0               1                         18
## 815              0               2                          9
## 816              0               4                         18
## 817              0               3                         10
## 818              0               1                         12
## 819              0               2                          8
## 820              0               4                          9
## 821              0               2                         48
## 822              0               1                         36
## 823              0               1                         24
## 824              0               1                         21
## 825              0               1                         24
## 826              0               2                          6
## 827              0               2                         48
## 828              0               1                         12
## 829              0               2                         12
## 830              0               2                         48
## 831              0               2                         36
## 832              0               4                         36
## 833              0               4                         36
## 834              0               3                         36
## 835              0               4                          6
## 836              0               2                         24
## 837              0               4                         18
## 838              0               2                         24
## 839              0               4                         18
## 840              0               4                         12
## 841              0               1                         36
## 842              0               2                         18
## 843              0               4                         12
## 844              0               2                         24
## 845              0               2                         24
## 846              0               2                         27
## 847              0               2                         30
## 848              0               2                         60
## 849              0               2                         36
## 850              0               2                         36
## 851              0               2                         45
## 852              0               1                         12
## 853              0               2                         24
## 854              0               3                         24
## 855              0               4                         18
## 856              0               1                         48
## 857              0               1                         24
## 858              0               1                         36
## 859              0               1                         42
## 860              0               1                         12
## 861              0               4                         48
## 862              0               1                         48
## 863              0               2                         12
## 864              0               4                         18
## 865              0               1                         40
## 866              0               3                         15
## 867              0               2                         12
## 868              0               2                         36
## 869              0               2                         12
## 870              0               2                         24
## 871              0               1                         48
## 872              0               4                         36
## 873              0               4                         18
## 874              0               4                         36
## 875              0               2                         24
## 876              0               2                         30
## 877              0               2                         30
## 878              0               1                         48
## 879              0               1                          9
## 880              0               1                         24
## 881              0               1                         18
## 882              0               3                          9
## 883              0               1                         48
## 884              0               2                         15
## 885              0               2                         15
## 886              0               2                         48
## 887              0               1                         24
## 888              0               1                         36
## 889              0               1                         24
## 890              0               2                         36
## 891              0               2                         60
## 892              0               1                         36
## 893              0               2                         12
## 894              0               1                         18
## 895              0               2                         24
## 896              0               2                         18
## 897              0               4                         21
## 898              0               4                         27
## 899              0               2                         27
## 900              0               4                         10
## 901              0               1                         24
## 902              0               1                         12
## 903              0               2                         36
## 904              0               1                         18
## 905              0               1                         18
## 906              0               1                         18
## 907              0               1                         18
## 908              0               1                         30
## 909              0               1                         24
## 910              0               1                         48
## 911              0               1                         24
## 912              0               1                         12
## 913              0               1                         42
## 914              0               1                         36
## 915              0               1                         24
## 916              0               1                         18
## 917              0               1                         12
## 918              0               2                         12
## 919              0               1                         48
## 920              0               1                         48
## 921              0               1                         24
## 922              0               1                         12
## 923              0               1                         24
## 924              0               1                         27
## 925              0               1                         21
## 926              0               1                         18
## 927              0               1                         24
## 928              0               1                         12
## 929              0               1                         48
## 930              0               2                         48
## 931              0               2                         18
## 932              0               1                         12
## 933              0               2                         12
## 934              0               1                         12
## 935              0               1                         16
## 936              0               1                         20
## 937              0               2                          9
## 938              0               2                         18
## 939              0               2                         24
## 940              0               2                         36
## 941              0               4                         48
## 942              0               2                         12
## 943              0               4                         12
## 944              0               2                         36
## 945              0               1                         12
## 946              0               2                         15
## 947              0               4                         10
## 948              0               4                         30
## 949              0               1                         18
## 950              0               4                         12
## 951              0               2                         45
## 952              0               3                         12
## 953              0               2                         21
## 954              0               4                         48
## 955              0               3                         12
## 956              0               1                         18
## 957              0               2                         21
## 958              0               2                         30
## 959              0               2                         30
## 960              0               2                         24
## 961              0               4                         18
## 962              0               2                         12
## 963              0               2                         54
## 964              0               1                         24
## 965              0               2                         15
## 966              0               2                         48
## 967              0               4                         24
## 968              0               1                         18
## 969              0               1                         45
## 970              0               1                         21
## 971              0               4                         48
## 972              0               2                         27
## 973              0               3                         18
## 974              0               1                         45
## 975              0               1                          6
## 976              0               1                         30
## 977              0               2                         48
## 978              0               1                          6
## 979              0               2                         12
## 980              0               1                         12
## 981              0               2                         24
## 982              0               4                         18
## 983              0               2                         48
## 984              0               1                         18
## 985              0               1                         48
## 986              0               4                         12
## 987              0               1                         14
## 988              0               1                         12
## 989              0               1                         18
## 990              0               2                         24
## 991              0               1                         18
## 992              0               2                         24
## 993              0               1                         18
## 994              0               1                         18
## 995              0               1                         12
## 996              0               1                         24
## 997              0               1                         24
## 998              0               4                         21
## 999              0               2                         12
## 1000             0               1                         30
##      Payment.Status.of.Previous.Credit Purpose Credit.Amount
## 1                                    4       2          1049
## 2                                    4       0          2799
## 3                                    2       9           841
## 4                                    4       0          2122
## 5                                    4       0          2171
## 6                                    4       0          2241
## 7                                    4       0          3398
## 8                                    4       0          1361
## 9                                    4       3          1098
## 10                                   2       3          3758
## 11                                   4       0          3905
## 12                                   4       1          6187
## 13                                   4       3          1957
## 14                                   3      10          7582
## 15                                   2       3          1936
## 16                                   2       3          2647
## 17                                   4       0          3939
## 18                                   2       3          3213
## 19                                   4       3          2337
## 20                                   4       0          7228
## 21                                   4       0          3676
## 22                                   4       0          3124
## 23                                   2       5          2384
## 24                                   4       4          1424
## 25                                   4       0          4716
## 26                                   3       3          4771
## 27                                   2       2           652
## 28                                   4       3          1154
## 29                                   2       0          3556
## 30                                   4       1          4796
## 31                                   4       3          3017
## 32                                   4       0          3535
## 33                                   4       0          6614
## 34                                   2       3          1376
## 35                                   2       0          1721
## 36                                   4       0           860
## 37                                   4       0          1495
## 38                                   4       3          1934
## 39                                   2       1          3378
## 40                                   4       1          3868
## 41                                   4       5           996
## 42                                   2      10          1755
## 43                                   4       0          1028
## 44                                   4       9          2825
## 45                                   2       6          1239
## 46                                   2       0          1216
## 47                                   2       9          1258
## 48                                   4       6          1864
## 49                                   2       0          1474
## 50                                   4       9          1382
## 51                                   2       0           640
## 52                                   2       3          3919
## 53                                   4       0          1224
## 54                                   4       3          2331
## 55                                   2       1          6313
## 56                                   4       3           385
## 57                                   4       3          1655
## 58                                   2       3          1053
## 59                                   2       3          3160
## 60                                   2       0          3079
## 61                                   4       0          1163
## 62                                   2       1          2679
## 63                                   4       3          3578
## 64                                   3       0         10875
## 65                                   3       0          1344
## 66                                   4       3          1237
## 67                                   2       3          3077
## 68                                   2       3          2284
## 69                                   2       3          1567
## 70                                   3       0          2032
## 71                                   4       2          2745
## 72                                   2       3          1867
## 73                                   2       3          2299
## 74                                   2       2           929
## 75                                   2       3          3399
## 76                                   2       2          2030
## 77                                   4       1          3275
## 78                                   4       0          1940
## 79                                   4       0          1602
## 80                                   2       3          1979
## 81                                   4       0          2022
## 82                                   4       3          3342
## 83                                   2       0          5866
## 84                                   4       1          2360
## 85                                   4       2          1520
## 86                                   2       0          3651
## 87                                   4       1          2346
## 88                                   3       3          4454
## 89                                   4       0           666
## 90                                   3       0          1965
## 91                                   4       0          1995
## 92                                   2       3          2991
## 93                                   0       9          4221
## 94                                   2       3          1364
## 95                                   4       2          6361
## 96                                   4       2          4526
## 97                                   4       3          3573
## 98                                   3       9          4455
## 99                                   2       2          2136
## 100                                  4       9          5954
## 101                                  4       2          3777
## 102                                  2       9           806
## 103                                  3       9          4712
## 104                                  3       0          7432
## 105                                  4       3          1851
## 106                                  2       0          1393
## 107                                  4       9          1412
## 108                                  2       3          1473
## 109                                  2       3          1533
## 110                                  4       6          2012
## 111                                  2       0          3959
## 112                                  2       2           428
## 113                                  4       0          2366
## 114                                  2       2           763
## 115                                  2       2          3976
## 116                                  2       0          6260
## 117                                  4       2          1919
## 118                                  2       1          2603
## 119                                  4       6           936
## 120                                  2       2          3062
## 121                                  2       3          4795
## 122                                  4       1          5842
## 123                                  2       3          2063
## 124                                  4       3          1459
## 125                                  2       3          1213
## 126                                  4       3          5103
## 127                                  2       4           874
## 128                                  2       2          2978
## 129                                  2       0          1820
## 130                                  4       3          2872
## 131                                  2       2          1925
## 132                                  2       2          2515
## 133                                  2       2          2116
## 134                                  2       3          1453
## 135                                  2       0          1364
## 136                                  2       2          1543
## 137                                  2       0          1318
## 138                                  1       0          2325
## 139                                  4       8           932
## 140                                  4       3          3148
## 141                                  2       3          3835
## 142                                  2       6          3832
## 143                                  2       3          5084
## 144                                  4       2          2406
## 145                                  2       3          2394
## 146                                  2       1          2476
## 147                                  2       1          2964
## 148                                  2       2          1262
## 149                                  2       9          1542
## 150                                  4       3          1743
## 151                                  1       3           409
## 152                                  2       3          2171
## 153                                  4       1          8858
## 154                                  2       0          3512
## 155                                  2       3          1158
## 156                                  4       3          2684
## 157                                  2       3          1498
## 158                                  4       3          5954
## 159                                  1       9          6416
## 160                                  4       2          3617
## 161                                  4       3          1291
## 162                                  4       9          1275
## 163                                  2       2          3972
## 164                                  4       2          3343
## 165                                  2       6           392
## 166                                  4       0          2134
## 167                                  4       3          5771
## 168                                  4       9          4526
## 169                                  4       2          2788
## 170                                  4       3          1382
## 171                                  2       3          5848
## 172                                  2       0          1228
## 173                                  2       3          1297
## 174                                  2       3          1552
## 175                                  2       3          1963
## 176                                  2       3          3235
## 177                                  4       9          4139
## 178                                  4       1          1804
## 179                                  2       9          1950
## 180                                  3       3         12749
## 181                                  2       4          1236
## 182                                  4       0          1055
## 183                                  0       9          8072
## 184                                  4       3          2831
## 185                                  2       9          1449
## 186                                  2       9          5742
## 187                                  2       0          2390
## 188                                  2       3          3430
## 189                                  2       6          2273
## 190                                  2       0          2923
## 191                                  2       3          1901
## 192                                  2       6          3711
## 193                                  2       0          8487
## 194                                  2       0          2255
## 195                                  2       3          1262
## 196                                  4       1          7253
## 197                                  4       0          6761
## 198                                  4       2          1817
## 199                                  2       3          2141
## 200                                  1       9          3609
## 201                                  2       3          2333
## 202                                  1       1          7824
## 203                                  1       3          1445
## 204                                  2       2          7721
## 205                                  2       0          3763
## 206                                  2       9          4439
## 207                                  2       3          1107
## 208                                  2       3          1444
## 209                                  1       0         12169
## 210                                  2       3          2753
## 211                                  2       0          1494
## 212                                  1       2          2828
## 213                                  1       2          2483
## 214                                  4       0          1299
## 215                                  2       0          1549
## 216                                  2       0          3949
## 217                                  2       1          2901
## 218                                  2       0           709
## 219                                  2       0         10722
## 220                                  2       0          1287
## 221                                  1       3          1940
## 222                                  4       3          3656
## 223                                  3       1          4679
## 224                                  3       1          8613
## 225                                  2       2          2659
## 226                                  4       3          1516
## 227                                  2       0          4380
## 228                                  3       0           802
## 229                                  2       9          1572
## 230                                  1       9          3566
## 231                                  2       3          1278
## 232                                  0       3           426
## 233                                  2       1          8588
## 234                                  2       1          3857
## 235                                  2       0           685
## 236                                  2       3          1603
## 237                                  2       2          2241
## 238                                  2       3          2384
## 239                                  2       2           601
## 240                                  2       1          2569
## 241                                  4       3          1316
## 242                                  2       0         10366
## 243                                  2       9          1568
## 244                                  4       3           629
## 245                                  1       3          1750
## 246                                  2       1          3488
## 247                                  4       3          1800
## 248                                  3       2          4151
## 249                                  2       5          2631
## 250                                  2       1          5248
## 251                                  3       0          2899
## 252                                  3       5          6204
## 253                                  2       3           804
## 254                                  2       3          3595
## 255                                  4       1          5711
## 256                                  2       9          2687
## 257                                  3       2          3643
## 258                                  4       2          2146
## 259                                  2       3          2315
## 260                                  2       9          3448
## 261                                  2       2          2708
## 262                                  4       0          1393
## 263                                  2       2          1275
## 264                                  2       2          1313
## 265                                  2       3          1493
## 266                                  2       3          2675
## 267                                  2       3          2118
## 268                                  2       0           909
## 269                                  4       2          1258
## 270                                  1       3          1569
## 271                                  2       1          1236
## 272                                  3       2          7678
## 273                                  2       5           660
## 274                                  2       2          2835
## 275                                  2       1          2670
## 276                                  1       8          3447
## 277                                  2       3          3568
## 278                                  4       9          3652
## 279                                  2       3          3660
## 280                                  2       3          1126
## 281                                  3       3           683
## 282                                  2       2          2251
## 283                                  2       1          4675
## 284                                  3       0          2353
## 285                                  2       3          3357
## 286                                  2       0           672
## 287                                  4       3           338
## 288                                  2       3          2697
## 289                                  2       0          2507
## 290                                  3       3          1478
## 291                                  4       6          3565
## 292                                  2       2          2221
## 293                                  4       3          1898
## 294                                  3       9          1449
## 295                                  3       2           960
## 296                                  2       1          8133
## 297                                  2       2          2301
## 298                                  3       9          1743
## 299                                  2       2           983
## 300                                  3       3          2320
## 301                                  1       8           339
## 302                                  2       3          5152
## 303                                  2       2          3749
## 304                                  4       3          3074
## 305                                  2       3           745
## 306                                  2       0          1469
## 307                                  2       2          1374
## 308                                  1       0           783
## 309                                  2       3          2606
## 310                                  0       1          9436
## 311                                  4       3           930
## 312                                  4       1          2751
## 313                                  4       0           250
## 314                                  2       0          1201
## 315                                  2       0           662
## 316                                  2       1          1300
## 317                                  1       9          1559
## 318                                  2       3          3016
## 319                                  4       3          1360
## 320                                  0       0          1204
## 321                                  2       0          1597
## 322                                  2       3          2073
## 323                                  2       9          2142
## 324                                  4       2          2132
## 325                                  2       0          1546
## 326                                  4       0          1287
## 327                                  2       0          1418
## 328                                  4       0          1343
## 329                                  2       0          2662
## 330                                  4       3          6070
## 331                                  4       6          1927
## 332                                  4       3          2404
## 333                                  4       3          1554
## 334                                  2       0          1283
## 335                                  3       0           717
## 336                                  2       2          1747
## 337                                  4       5          1288
## 338                                  4       0          1038
## 339                                  2       1          2848
## 340                                  2       1          1413
## 341                                  4       3          3077
## 342                                  1       1          3632
## 343                                  4       1          3229
## 344                                  2       0          3577
## 345                                  4       0           682
## 346                                  2       3          1924
## 347                                  2       6           727
## 348                                  4       0           781
## 349                                  4       0          2121
## 350                                  4       6           701
## 351                                  4       2          2069
## 352                                  2       0          1525
## 353                                  4       9          7629
## 354                                  4       0          3499
## 355                                  2       3          1346
## 356                                  4       1         10477
## 357                                  2       1          2924
## 358                                  4       0          1231
## 359                                  2       0          1961
## 360                                  4       0          5045
## 361                                  4       0          1255
## 362                                  2       2          1858
## 363                                  4       2          1221
## 364                                  2       2          1388
## 365                                  2       3          2279
## 366                                  0       2          2759
## 367                                  2       3          1258
## 368                                  0       8          1410
## 369                                  2       0          1403
## 370                                  2       2          3021
## 371                                  2       9          6568
## 372                                  4       3          2578
## 373                                  4       1          7758
## 374                                  2       4           343
## 375                                  3       2          1591
## 376                                  2       3          3416
## 377                                  0       5          1108
## 378                                  3       1          5965
## 379                                  2       5          1514
## 380                                  4       3          6742
## 381                                  2       2          3650
## 382                                  2       2          3599
## 383                                  4       0         13756
## 384                                  2       0           276
## 385                                  4       2          4041
## 386                                  2       3           458
## 387                                  2       2           918
## 388                                  2       0          7393
## 389                                  2       4          1225
## 390                                  2       1          2812
## 391                                  2       1          3029
## 392                                  4       0          1480
## 393                                  4       6          1047
## 394                                  4       3          1471
## 395                                  2       2          5511
## 396                                  2       3          1206
## 397                                  3       3          6403
## 398                                  2       3           707
## 399                                  3       1          1503
## 400                                  2       0          6078
## 401                                  2       9          2528
## 402                                  2       9          1037
## 403                                  2       1          1352
## 404                                  2       3          3181
## 405                                  2       3          4594
## 406                                  2      10          5381
## 407                                  2       1          4657
## 408                                  2       9          1391
## 409                                  2       9          1913
## 410                                  2       3          7166
## 411                                  2       3          1409
## 412                                  3       9          2978
## 413                                  4       3           976
## 414                                  3       9          2375
## 415                                  4       3           522
## 416                                  4       3          2743
## 417                                  4       3          1154
## 418                                  4       1          5804
## 419                                  4       3          1169
## 420                                  4       2          1478
## 421                                  2       3           776
## 422                                  4       0          1322
## 423                                  4       0          1175
## 424                                  2       0          2133
## 425                                  4       3          1829
## 426                                  4       3           717
## 427                                  3       6         11760
## 428                                  4       6          1501
## 429                                  2       6          1200
## 430                                  2       0          3195
## 431                                  4       3          4530
## 432                                  3       5          1555
## 433                                  4       9          2326
## 434                                  4       9          1887
## 435                                  4       9          1264
## 436                                  3       3           846
## 437                                  4       6          1532
## 438                                  3       3           935
## 439                                  4       9          2442
## 440                                  4       9          3590
## 441                                  4       2          2288
## 442                                  3       9          5117
## 443                                  4       2         14179
## 444                                  2       3          1386
## 445                                  4       3           618
## 446                                  2       2          1574
## 447                                  4       3           700
## 448                                  2       3           886
## 449                                  2       1          4686
## 450                                  2       3           790
## 451                                  2       3           766
## 452                                  2       2          2212
## 453                                  2       0          7308
## 454                                  4       6          5743
## 455                                  2       0          3973
## 456                                  3       3          7418
## 457                                  3      10          2629
## 458                                  2       9          1941
## 459                                  3       2          2333
## 460                                  2       1          2445
## 461                                  2       1          6468
## 462                                  4       2          7374
## 463                                  2       1          3812
## 464                                  2       0          4006
## 465                                  2       0          7472
## 466                                  2       2          1424
## 467                                  2       1          2028
## 468                                  2       0          5324
## 469                                  2       3          2323
## 470                                  2       6          1393
## 471                                  2       2          1984
## 472                                  2       3           999
## 473                                  2       9          7409
## 474                                  2       2          2186
## 475                                  2       3          4473
## 476                                  2       8           937
## 477                                  2       2          3422
## 478                                  2       3          3105
## 479                                  4       6          2748
## 480                                  2       5          3872
## 481                                  2       5          5190
## 482                                  2       2          3001
## 483                                  3       9          3863
## 484                                  4       2          5801
## 485                                  4       2          1592
## 486                                  4       9          1185
## 487                                  4       2          3780
## 488                                  4       2          3612
## 489                                  2       9          1076
## 490                                  2       0          3527
## 491                                  2       3          2051
## 492                                  4       2          3331
## 493                                  0       9          3104
## 494                                  4       3          2611
## 495                                  4       1          1409
## 496                                  2       3          1311
## 497                                  2       3          2108
## 498                                  4       1          4042
## 499                                  4       0           926
## 500                                  2       3          1680
## 501                                  2       0          1249
## 502                                  4       0          2463
## 503                                  2       3          1595
## 504                                  4       5          2058
## 505                                  2       1          7814
## 506                                  4       3          1740
## 507                                  4       3          1240
## 508                                  4       1          6842
## 509                                  4       2          5150
## 510                                  2       0          1203
## 511                                  4       0          2080
## 512                                  2       6          1538
## 513                                  4       0          3878
## 514                                  2       2          3832
## 515                                  2       0          3186
## 516                                  2       3          2896
## 517                                  3       9          6967
## 518                                  2       6          1819
## 519                                  2       3          5943
## 520                                  4       2          7127
## 521                                  2       2          3349
## 522                                  2       2         10974
## 523                                  2       3           518
## 524                                  2       3          1126
## 525                                  4       1          1860
## 526                                  4       3          9566
## 527                                  2       3           701
## 528                                  2       3          2930
## 529                                  2       3          1505
## 530                                  4       3          2238
## 531                                  4       3          1503
## 532                                  4       1          2197
## 533                                  2       3          1881
## 534                                  4       3          1880
## 535                                  2       3          2389
## 536                                  2       3          1967
## 537                                  4       0          3380
## 538                                  4       0          1455
## 539                                  4       3           730
## 540                                  0       2          3244
## 541                                  2       3          1670
## 542                                  2       3          3979
## 543                                  2       2          1922
## 544                                  4       2          1295
## 545                                  4       3          1544
## 546                                  2       9           907
## 547                                  2       3          1715
## 548                                  4       3          1347
## 549                                  2       0          1007
## 550                                  4       2          1402
## 551                                  2       0          2002
## 552                                  4       6          2096
## 553                                  2       0          1101
## 554                                  2       8           894
## 555                                  2       2          1577
## 556                                  3       9          2764
## 557                                  0       0          8358
## 558                                  2       2          1474
## 559                                  2       1          5433
## 560                                  2       9          1410
## 561                                  4       0          3485
## 562                                  4       1          3850
## 563                                  2       0          7408
## 564                                  2       3          1377
## 565                                  3       9          4272
## 566                                  3       3          1553
## 567                                  3       9          9857
## 568                                  4       0           362
## 569                                  4       2          1935
## 570                                  2       3         10222
## 571                                  2       0          1330
## 572                                  2       6          9055
## 573                                  2       1          7966
## 574                                  1       2          3496
## 575                                  2       1          6948
## 576                                  0       9         12204
## 577                                  2       2          3446
## 578                                  2       6           684
## 579                                  4       2          4281
## 580                                  2       3          7174
## 581                                  1       3          1546
## 582                                  2       2          2359
## 583                                  2       3          3621
## 584                                  2       4           741
## 585                                  2       2          7865
## 586                                  2       1          2910
## 587                                  4       0          5302
## 588                                  2       2          3620
## 589                                  2       3          3509
## 590                                  2       2          3017
## 591                                  2       2          1657
## 592                                  4      10          1164
## 593                                  4       2          6229
## 594                                  1       0          1193
## 595                                  0       2          4583
## 596                                  4       2          5371
## 597                                  2       2           708
## 598                                  4       0           571
## 599                                  2       3          2522
## 600                                  2       2          5179
## 601                                  2       1          8229
## 602                                  4       2          2028
## 603                                  2       0          1374
## 604                                  2       2          1289
## 605                                  2       2          2712
## 606                                  4       2           975
## 607                                  3       2          1050
## 608                                  4       0           609
## 609                                  2       1          4788
## 610                                  2       2          3069
## 611                                  2       0           836
## 612                                  2       2          2577
## 613                                  2       2          1620
## 614                                  2       2          1845
## 615                                  2       1          6579
## 616                                  2       0          1893
## 617                                  4       1         10623
## 618                                  2       0          2249
## 619                                  2       2          3108
## 620                                  4       0           958
## 621                                  2       1          9277
## 622                                  4      10          6314
## 623                                  4       1          1526
## 624                                  2       2          3590
## 625                                  4       1          6615
## 626                                  4       2          1872
## 627                                  2       0          2859
## 628                                  4       3          1582
## 629                                  2       8          1238
## 630                                  2       2          2578
## 631                                  4       2          1433
## 632                                  2       2          7882
## 633                                  2       2          4169
## 634                                  2       2          3959
## 635                                  2       0          3249
## 636                                  2       2          3149
## 637                                  4       2          2246
## 638                                  4       9          1797
## 639                                  4       2          4272
## 640                                  4       1          2957
## 641                                  4       2          2348
## 642                                  0       9          6289
## 643                                  4       1          6419
## 644                                  4       1          6143
## 645                                  4       6          1597
## 646                                  2      10         15857
## 647                                  4       3          2223
## 648                                  3       3          7238
## 649                                  3       9          2503
## 650                                  2       9          2622
## 651                                  2       2          4351
## 652                                  2       3           368
## 653                                  2       8           754
## 654                                  4       3          2424
## 655                                  3       9          6681
## 656                                  3       9          2427
## 657                                  4       3          1216
## 658                                  2       3           753
## 659                                  2       3          2576
## 660                                  2       3           590
## 661                                  2       3          1414
## 662                                  2       3          1103
## 663                                  3       3           585
## 664                                  2       3          1068
## 665                                  4       0           713
## 666                                  2       3          1092
## 667                                  2       3          2329
## 668                                  4       3           882
## 669                                  2       3           866
## 670                                  2       3          2415
## 671                                  2       3          2101
## 672                                  2       3          1301
## 673                                  2       3          1113
## 674                                  2       3           760
## 675                                  2       3           625
## 676                                  4       0          1323
## 677                                  4       3          1138
## 678                                  4       3          1795
## 679                                  4       3          2728
## 680                                  2       3           484
## 681                                  1       3          1048
## 682                                  2       3          1155
## 683                                  3       1          7057
## 684                                  4       3          1537
## 685                                  2       3          2214
## 686                                  4       2          1585
## 687                                  2       2          1521
## 688                                  1       4          3990
## 689                                  2       2          3049
## 690                                  2       3          1282
## 691                                  2       3         10144
## 692                                  2       0          1168
## 693                                  2       5           454
## 694                                  3       1          3594
## 695                                  2       2          1768
## 696                                  3       3         15653
## 697                                  3       0          2247
## 698                                  2       3          1413
## 699                                  4       1          4576
## 700                                  4       3          1231
## 701                                  2       1          8335
## 702                                  4       1          5800
## 703                                  3       6          8471
## 704                                  2       2          3622
## 705                                  4       3          1169
## 706                                  2       4          1262
## 707                                  4       2          3617
## 708                                  4       0          2181
## 709                                  1       9          7685
## 710                                  4       6          6110
## 711                                  2       0          3757
## 712                                  4       5          3394
## 713                                  4       9          6304
## 714                                  4       6          1244
## 715                                  2       0          3518
## 716                                  0       5          2613
## 717                                  2       6          7476
## 718                                  2       9          4591
## 719                                  2       2          1924
## 720                                  2       3          5595
## 721                                  3       6          6224
## 722                                  2       6          1905
## 723                                  3       1          2993
## 724                                  3       1          8947
## 725                                  2       2          4020
## 726                                  2       1          2779
## 727                                  2       0          2782
## 728                                  2       0          1884
## 729                                  4       1         11054
## 730                                  3       3          9157
## 731                                  1       1          9283
## 732                                  2       0          6527
## 733                                  4       1          3368
## 734                                  2       0          2511
## 735                                  2       1          5493
## 736                                  2       4          1338
## 737                                  2       3          1082
## 738                                  4       3          1149
## 739                                  2       5          1308
## 740                                  0       1          6148
## 741                                  2       2          1736
## 742                                  2       3          3059
## 743                                  2       2          2996
## 744                                  4       1          7596
## 745                                  2       1          4811
## 746                                  2       2          1766
## 747                                  2       1          2760
## 748                                  4       5          5507
## 749                                  2       6          1199
## 750                                  2       2          2892
## 751                                  3       0          2862
## 752                                  2       0           654
## 753                                  4       6          1136
## 754                                  2       1          4113
## 755                                  2       0         14555
## 756                                  0       0           950
## 757                                  4       0          1199
## 758                                  0       0          1082
## 759                                  2       0          2150
## 760                                  4       0          2820
## 761                                  2       3          3060
## 762                                  2       3          2600
## 763                                  0       0          5003
## 764                                  2       6          6288
## 765                                  3       0          2538
## 766                                  2       3          1478
## 767                                  4       3          4933
## 768                                  4       0          1530
## 769                                  1       0          1437
## 770                                  2       4          1275
## 771                                  2       3          1823
## 772                                  2       0          1422
## 773                                  2       4          1217
## 774                                  2       0          9271
## 775                                  3       9          2145
## 776                                  2       0          1842
## 777                                  3       2          4297
## 778                                  4       2          3384
## 779                                  4       3          1245
## 780                                  2       6          4623
## 781                                  4       2          8386
## 782                                  3       3          1024
## 783                                  2       0         14318
## 784                                  1       6           433
## 785                                  1       3          2149
## 786                                  2       3          2397
## 787                                  1       0           931
## 788                                  3       5          1512
## 789                                  0       9          4241
## 790                                  4       2          4736
## 791                                  0       0          1778
## 792                                  2       3          2327
## 793                                  1       2          6872
## 794                                  2       6           795
## 795                                  3       9          1908
## 796                                  0       9          1953
## 797                                  2       2          2864
## 798                                  4       6          2319
## 799                                  2       0           915
## 800                                  2       0           947
## 801                                  2       0          1381
## 802                                  2       0          1285
## 803                                  2       0          1371
## 804                                  2       0          1042
## 805                                  2       0           900
## 806                                  2       0          1207
## 807                                  0       0          2278
## 808                                  3       9          6836
## 809                                  2       2          3345
## 810                                  1       6          1198
## 811                                  2       9         15672
## 812                                  2       9          7297
## 813                                  2       5          1943
## 814                                  2       3          3190
## 815                                  1       1          5129
## 816                                  3       2          1808
## 817                                  2       0          1240
## 818                                  2       0           759
## 819                                  2       2          1237
## 820                                  2       2          1980
## 821                                  2       3         10961
## 822                                  3       6          6887
## 823                                  2       3          1938
## 824                                  2       3          1835
## 825                                  3       3          1659
## 826                                  3       0          1209
## 827                                  0       9          3844
## 828                                  4       0          4843
## 829                                  2       5           639
## 830                                  2       3          5951
## 831                                  0       3          3804
## 832                                  3       3          4463
## 833                                  3       9          7980
## 834                                  2       3          4210
## 835                                  2       2          4611
## 836                                  2       1         11560
## 837                                  0       9          4165
## 838                                  2       2          4057
## 839                                  1       0          6458
## 840                                  2       0          1386
## 841                                  2       6          1977
## 842                                  4       2          1928
## 843                                  2       2          1123
## 844                                  2      10         11328
## 845                                  4      10         11938
## 846                                  4       3          2520
## 847                                  3       3          1919
## 848                                  1      10         14782
## 849                                  2       3          2671
## 850                                  2       6         12612
## 851                                  2       3          3031
## 852                                  1       3           626
## 853                                  4       9          1935
## 854                                  4       0          1344
## 855                                  2       2          1533
## 856                                  2       0          3931
## 857                                  1       2          3349
## 858                                  2       3          2302
## 859                                  2       3          3965
## 860                                  2       3           727
## 861                                  2       9          3914
## 862                                  2       9          4308
## 863                                  2       3          1534
## 864                                  4       0          2775
## 865                                  4       6          5998
## 866                                  4       3          1271
## 867                                  2       0          1295
## 868                                  2       1          9398
## 869                                  2       2           951
## 870                                  2       0          1355
## 871                                  2       4          3051
## 872                                  4       0          7855
## 873                                  2       3           433
## 874                                  3       9          9572
## 875                                  1       6          1837
## 876                                  4       0          4249
## 877                                  4       0          5234
## 878                                  2       3          6758
## 879                                  2       3          1366
## 880                                  1      10          1358
## 881                                  2       2          2473
## 882                                  0       3          1337
## 883                                  2       0          7763
## 884                                  1       0          1264
## 885                                  2       0          2631
## 886                                  2       0          6560
## 887                                  2       0          3123
## 888                                  4       6          8065
## 889                                  2       3          2439
## 890                                  2       2          9034
## 891                                  2       0         14027
## 892                                  4       1          9629
## 893                                  2       3          1484
## 894                                  2       2          1131
## 895                                  3       2          2064
## 896                                  2       1         12976
## 897                                  3       9          2580
## 898                                  2       0          2570
## 899                                  2       9          3915
## 900                                  2       0          1309
## 901                                  2       0          4817
## 902                                  2       0          2579
## 903                                  3       0          2225
## 904                                  2       2          4153
## 905                                  0       2          3114
## 906                                  4       2          2124
## 907                                  1       2          1553
## 908                                  2       2          2406
## 909                                  3       0          1333
## 910                                  0       2          7119
## 911                                  3       0          4870
## 912                                  4       0           691
## 913                                  3       3          4370
## 914                                  1       2          2746
## 915                                  0       2          4110
## 916                                  2       2          2462
## 917                                  2       2          1282
## 918                                  0       2          2969
## 919                                  0       1          4605
## 920                                  4       1          6331
## 921                                  1       2          3552
## 922                                  1       0           697
## 923                                  2       0          1442
## 924                                  0       9          5293
## 925                                  3       6          3414
## 926                                  2       2          2039
## 927                                  1       9          3161
## 928                                  2       8           902
## 929                                  2       1         10297
## 930                                  0       9         14421
## 931                                  4       0          1056
## 932                                  2       0          1274
## 933                                  2       0          1223
## 934                                  2       0          1372
## 935                                  4       0          2625
## 936                                  4       0          2235
## 937                                  2       2           959
## 938                                  4       0           884
## 939                                  2       0          1246
## 940                                  3       0          8086
## 941                                  4       0         10127
## 942                                  2       0           888
## 943                                  2       6           719
## 944                                  2       0         12389
## 945                                  2       3           709
## 946                                  1       0          6850
## 947                                  2       2          2210
## 948                                  1       1          7485
## 949                                  1       0          1442
## 950                                  4       3           797
## 951                                  4       3          4746
## 952                                  4       0           939
## 953                                  2       9          1188
## 954                                  4       1         11590
## 955                                  1       9           609
## 956                                  4       5          1190
## 957                                  2       9          2767
## 958                                  2       2          3441
## 959                                  0       9          4280
## 960                                  2       3          3092
## 961                                  2       0          6761
## 962                                  2       3          1331
## 963                                  0       9         15945
## 964                                  2       2          3234
## 965                                  2       3           802
## 966                                  2       2          9960
## 967                                  3       9          8648
## 968                                  2       3          1345
## 969                                  2       3          1845
## 970                                  1       0          1647
## 971                                  2       9          4844
## 972                                  0       9          8318
## 973                                  2       3          2100
## 974                                  0       9         11816
## 975                                  2       6           448
## 976                                  2       5         11998
## 977                                  0      10         18424
## 978                                  2       0         14896
## 979                                  2       2          2762
## 980                                  2       1          3386
## 981                                  2       3          2039
## 982                                  3       9          2169
## 983                                  4       2          5096
## 984                                  2       3          1882
## 985                                  2       3          6999
## 986                                  4       9          2292
## 987                                  2       0          8978
## 988                                  2       3           674
## 989                                  2       0           976
## 990                                  2       0          2718
## 991                                  2       6           750
## 992                                  2       1         12579
## 993                                  2       1          7511
## 994                                  4       0          3966
## 995                                  0       3          6199
## 996                                  2       3          1987
## 997                                  2       0          2303
## 998                                  4       0         12680
## 999                                  2       3          6468
## 1000                                 2       2          6350
##      Value.Savings.Stocks Length.of.current.employment Instalment.per.cent
## 1                       1                            2                   4
## 2                       1                            3                   2
## 3                       2                            4                   2
## 4                       1                            3                   3
## 5                       1                            3                   4
## 6                       1                            2                   1
## 7                       1                            4                   1
## 8                       1                            2                   2
## 9                       1                            1                   4
## 10                      3                            1                   1
## 11                      1                            3                   2
## 12                      2                            4                   1
## 13                      1                            4                   1
## 14                      2                            1                   2
## 15                      5                            4                   2
## 16                      3                            3                   2
## 17                      1                            3                   1
## 18                      3                            2                   1
## 19                      1                            5                   4
## 20                      1                            3                   1
## 21                      1                            3                   1
## 22                      1                            2                   1
## 23                      1                            2                   4
## 24                      1                            4                   4
## 25                      5                            2                   1
## 26                      1                            4                   2
## 27                      1                            5                   4
## 28                      1                            5                   2
## 29                      5                            3                   3
## 30                      1                            5                   4
## 31                      1                            5                   4
## 32                      1                            4                   4
## 33                      1                            5                   4
## 34                      3                            4                   4
## 35                      1                            2                   2
## 36                      1                            5                   1
## 37                      1                            5                   4
## 38                      1                            5                   2
## 39                      5                            3                   2
## 40                      1                            5                   4
## 41                      5                            4                   4
## 42                      1                            5                   4
## 43                      1                            3                   4
## 44                      5                            4                   4
## 45                      5                            3                   4
## 46                      1                            2                   4
## 47                      1                            4                   4
## 48                      2                            3                   4
## 49                      2                            2                   4
## 50                      2                            4                   4
## 51                      1                            3                   4
## 52                      1                            3                   2
## 53                      1                            3                   3
## 54                      5                            5                   1
## 55                      5                            5                   3
## 56                      1                            4                   4
## 57                      1                            5                   2
## 58                      1                            2                   4
## 59                      5                            5                   4
## 60                      5                            3                   4
## 61                      3                            3                   4
## 62                      1                            2                   4
## 63                      5                            5                   4
## 64                      1                            5                   2
## 65                      1                            3                   4
## 66                      2                            3                   1
## 67                      1                            3                   2
## 68                      1                            4                   4
## 69                      1                            3                   1
## 70                      1                            5                   4
## 71                      4                            4                   3
## 72                      5                            5                   4
## 73                      3                            5                   4
## 74                      5                            4                   4
## 75                      5                            5                   2
## 76                      5                            4                   2
## 77                      1                            5                   1
## 78                      4                            5                   4
## 79                      1                            5                   4
## 80                      5                            5                   4
## 81                      1                            3                   4
## 82                      5                            5                   4
## 83                      2                            3                   2
## 84                      3                            3                   2
## 85                      5                            5                   4
## 86                      4                            3                   1
## 87                      1                            4                   4
## 88                      1                            3                   4
## 89                      4                            4                   3
## 90                      5                            3                   4
## 91                      2                            2                   4
## 92                      5                            5                   2
## 93                      1                            3                   2
## 94                      1                            4                   3
## 95                      1                            5                   2
## 96                      4                            2                   4
## 97                      1                            3                   1
## 98                      1                            3                   2
## 99                      1                            3                   3
## 100                     1                            4                   2
## 101                     4                            3                   4
## 102                     1                            3                   4
## 103                     5                            3                   4
## 104                     1                            3                   2
## 105                     1                            4                   4
## 106                     1                            3                   2
## 107                     1                            3                   4
## 108                     1                            2                   3
## 109                     1                            2                   4
## 110                     5                            4                   4
## 111                     1                            3                   3
## 112                     1                            5                   2
## 113                     3                            4                   3
## 114                     1                            3                   4
## 115                     5                            4                   2
## 116                     1                            4                   3
## 117                     1                            4                   4
## 118                     4                            3                   2
## 119                     3                            5                   4
## 120                     3                            5                   4
## 121                     1                            2                   4
## 122                     1                            5                   2
## 123                     1                            2                   4
## 124                     1                            3                   4
## 125                     3                            5                   4
## 126                     1                            2                   3
## 127                     5                            2                   4
## 128                     3                            3                   1
## 129                     1                            3                   2
## 130                     2                            5                   3
## 131                     1                            3                   2
## 132                     1                            3                   3
## 133                     1                            3                   2
## 134                     1                            2                   3
## 135                     1                            3                   2
## 136                     4                            3                   4
## 137                     4                            5                   4
## 138                     2                            4                   2
## 139                     5                            4                   1
## 140                     5                            3                   3
## 141                     5                            5                   2
## 142                     5                            5                   1
## 143                     5                            5                   2
## 144                     1                            1                   2
## 145                     5                            3                   4
## 146                     5                            5                   4
## 147                     5                            5                   4
## 148                     5                            5                   2
## 149                     1                            4                   2
## 150                     1                            5                   4
## 151                     4                            3                   3
## 152                     1                            2                   2
## 153                     5                            4                   2
## 154                     2                            4                   2
## 155                     3                            3                   3
## 156                     1                            3                   4
## 157                     1                            3                   4
## 158                     1                            4                   3
## 159                     1                            5                   4
## 160                     1                            5                   1
## 161                     1                            3                   4
## 162                     4                            3                   2
## 163                     1                            4                   2
## 164                     1                            3                   4
## 165                     1                            2                   4
## 166                     1                            3                   4
## 167                     1                            4                   4
## 168                     1                            3                   3
## 169                     1                            4                   2
## 170                     1                            3                   1
## 171                     1                            3                   4
## 172                     1                            3                   4
## 173                     1                            3                   3
## 174                     1                            4                   3
## 175                     1                            4                   4
## 176                     3                            5                   3
## 177                     2                            3                   3
## 178                     2                            2                   3
## 179                     1                            4                   4
## 180                     3                            4                   4
## 181                     1                            2                   1
## 182                     1                            2                   4
## 183                     5                            2                   2
## 184                     1                            3                   4
## 185                     1                            4                   3
## 186                     2                            4                   2
## 187                     5                            5                   4
## 188                     3                            5                   3
## 189                     1                            4                   3
## 190                     2                            3                   1
## 191                     2                            3                   4
## 192                     5                            3                   2
## 193                     5                            4                   1
## 194                     5                            2                   4
## 195                     1                            3                   3
## 196                     1                            4                   3
## 197                     1                            4                   1
## 198                     1                            3                   4
## 199                     2                            4                   3
## 200                     1                            3                   1
## 201                     3                            5                   4
## 202                     5                            2                   3
## 203                     5                            4                   4
## 204                     5                            2                   1
## 205                     5                            4                   2
## 206                     1                            5                   1
## 207                     1                            3                   2
## 208                     5                            2                   4
## 209                     5                            1                   4
## 210                     2                            5                   3
## 211                     5                            2                   1
## 212                     3                            3                   4
## 213                     3                            3                   4
## 214                     1                            3                   1
## 215                     5                            2                   4
## 216                     1                            2                   1
## 217                     5                            2                   1
## 218                     4                            2                   2
## 219                     1                            2                   1
## 220                     5                            5                   4
## 221                     1                            2                   3
## 222                     5                            5                   4
## 223                     1                            4                   3
## 224                     4                            3                   2
## 225                     4                            3                   4
## 226                     4                            3                   4
## 227                     2                            3                   3
## 228                     1                            3                   4
## 229                     4                            5                   4
## 230                     2                            4                   4
## 231                     1                            5                   4
## 232                     1                            5                   4
## 233                     2                            5                   4
## 234                     1                            3                   4
## 235                     1                            4                   2
## 236                     1                            5                   4
## 237                     1                            5                   4
## 238                     1                            5                   4
## 239                     1                            2                   1
## 240                     3                            3                   4
## 241                     3                            3                   2
## 242                     1                            5                   2
## 243                     2                            3                   3
## 244                     3                            5                   4
## 245                     3                            5                   2
## 246                     2                            4                   3
## 247                     1                            3                   4
## 248                     2                            3                   2
## 249                     2                            3                   3
## 250                     5                            3                   1
## 251                     5                            5                   4
## 252                     1                            3                   2
## 253                     1                            5                   4
## 254                     1                            5                   4
## 255                     4                            5                   4
## 256                     1                            4                   2
## 257                     1                            5                   1
## 258                     1                            2                   1
## 259                     1                            5                   3
## 260                     1                            4                   1
## 261                     1                            2                   2
## 262                     1                            2                   4
## 263                     1                            2                   4
## 264                     1                            5                   1
## 265                     1                            2                   4
## 266                     3                            5                   3
## 267                     1                            3                   2
## 268                     3                            5                   4
## 269                     1                            2                   2
## 270                     2                            5                   4
## 271                     3                            3                   2
## 272                     3                            4                   2
## 273                     3                            4                   2
## 274                     3                            5                   3
## 275                     1                            5                   4
## 276                     3                            3                   4
## 277                     1                            5                   4
## 278                     1                            4                   2
## 279                     1                            3                   2
## 280                     2                            5                   2
## 281                     1                            2                   2
## 282                     1                            3                   1
## 283                     5                            2                   1
## 284                     1                            3                   1
## 285                     4                            2                   4
## 286                     1                            1                   1
## 287                     3                            5                   4
## 288                     1                            3                   1
## 289                     3                            5                   2
## 290                     1                            3                   4
## 291                     5                            2                   2
## 292                     3                            3                   2
## 293                     5                            3                   1
## 294                     2                            5                   1
## 295                     4                            4                   3
## 296                     1                            3                   1
## 297                     2                            2                   2
## 298                     2                            3                   1
## 299                     4                            2                   1
## 300                     1                            1                   2
## 301                     1                            5                   4
## 302                     1                            4                   4
## 303                     1                            2                   2
## 304                     5                            3                   1
## 305                     1                            3                   3
## 306                     2                            5                   4
## 307                     1                            3                   1
## 308                     5                            3                   1
## 309                     1                            2                   4
## 310                     5                            3                   2
## 311                     5                            5                   4
## 312                     5                            5                   4
## 313                     4                            3                   2
## 314                     1                            2                   4
## 315                     1                            2                   3
## 316                     5                            5                   4
## 317                     1                            4                   4
## 318                     1                            3                   3
## 319                     1                            3                   4
## 320                     2                            3                   4
## 321                     3                            3                   3
## 322                     2                            3                   4
## 323                     4                            5                   1
## 324                     5                            2                   2
## 325                     1                            3                   3
## 326                     4                            5                   4
## 327                     2                            3                   3
## 328                     1                            5                   1
## 329                     5                            4                   4
## 330                     1                            5                   3
## 331                     5                            3                   3
## 332                     1                            3                   2
## 333                     1                            4                   1
## 334                     5                            4                   4
## 335                     5                            5                   4
## 336                     1                            2                   4
## 337                     2                            5                   3
## 338                     1                            4                   4
## 339                     2                            3                   1
## 340                     4                            4                   3
## 341                     5                            5                   3
## 342                     1                            3                   1
## 343                     5                            1                   2
## 344                     2                            3                   1
## 345                     2                            4                   4
## 346                     1                            3                   1
## 347                     3                            5                   4
## 348                     1                            5                   4
## 349                     1                            3                   4
## 350                     1                            3                   4
## 351                     5                            3                   2
## 352                     4                            4                   4
## 353                     5                            5                   4
## 354                     1                            3                   3
## 355                     2                            5                   2
## 356                     5                            5                   2
## 357                     1                            3                   3
## 358                     1                            5                   3
## 359                     1                            5                   3
## 360                     5                            5                   1
## 361                     1                            5                   4
## 362                     1                            2                   4
## 363                     5                            3                   1
## 364                     1                            3                   4
## 365                     5                            3                   4
## 366                     1                            5                   2
## 367                     3                            3                   3
## 368                     1                            3                   2
## 369                     1                            3                   2
## 370                     1                            3                   2
## 371                     1                            3                   2
## 372                     4                            5                   2
## 373                     4                            5                   2
## 374                     1                            2                   4
## 375                     2                            4                   4
## 376                     1                            3                   3
## 377                     1                            4                   4
## 378                     1                            5                   1
## 379                     2                            3                   4
## 380                     5                            4                   2
## 381                     1                            2                   1
## 382                     1                            4                   1
## 383                     5                            5                   2
## 384                     1                            3                   4
## 385                     3                            3                   4
## 386                     1                            3                   4
## 387                     1                            3                   4
## 388                     1                            3                   1
## 389                     1                            3                   2
## 390                     5                            5                   2
## 391                     1                            4                   2
## 392                     3                            1                   2
## 393                     1                            3                   2
## 394                     1                            3                   4
## 395                     2                            3                   4
## 396                     1                            5                   4
## 397                     1                            2                   1
## 398                     1                            3                   4
## 399                     1                            3                   4
## 400                     1                            4                   2
## 401                     1                            2                   4
## 402                     2                            4                   3
## 403                     3                            1                   1
## 404                     1                            2                   4
## 405                     1                            2                   3
## 406                     5                            1                   3
## 407                     1                            3                   3
## 408                     1                            3                   2
## 409                     4                            2                   3
## 410                     5                            4                   2
## 411                     2                            1                   2
## 412                     5                            3                   4
## 413                     5                            5                   4
## 414                     3                            3                   4
## 415                     3                            5                   4
## 416                     1                            5                   4
## 417                     2                            1                   4
## 418                     4                            3                   4
## 419                     5                            3                   4
## 420                     1                            5                   4
## 421                     1                            3                   4
## 422                     4                            3                   4
## 423                     1                            1                   2
## 424                     5                            5                   4
## 425                     1                            5                   4
## 426                     1                            5                   4
## 427                     2                            4                   2
## 428                     1                            5                   2
## 429                     5                            3                   4
## 430                     5                            3                   1
## 431                     1                            4                   4
## 432                     4                            5                   4
## 433                     3                            3                   2
## 434                     5                            3                   4
## 435                     5                            5                   4
## 436                     5                            5                   3
## 437                     2                            3                   4
## 438                     1                            3                   3
## 439                     1                            5                   4
## 440                     1                            1                   3
## 441                     1                            2                   4
## 442                     1                            4                   3
## 443                     5                            4                   4
## 444                     5                            3                   4
## 445                     1                            5                   4
## 446                     1                            3                   4
## 447                     5                            5                   4
## 448                     5                            3                   4
## 449                     1                            3                   2
## 450                     3                            3                   4
## 451                     3                            3                   4
## 452                     5                            4                   4
## 453                     1                            1                   2
## 454                     1                            2                   2
## 455                     1                            1                   1
## 456                     5                            3                   1
## 457                     1                            3                   2
## 458                     4                            3                   4
## 459                     5                            2                   4
## 460                     5                            2                   2
## 461                     5                            1                   1
## 462                     1                            1                   4
## 463                     2                            2                   1
## 464                     1                            3                   3
## 465                     5                            1                   1
## 466                     5                            5                   3
## 467                     5                            3                   4
## 468                     3                            5                   1
## 469                     1                            4                   4
## 470                     1                            5                   4
## 471                     1                            3                   4
## 472                     5                            5                   4
## 473                     5                            5                   3
## 474                     5                            4                   1
## 475                     1                            5                   4
## 476                     1                            2                   4
## 477                     1                            5                   4
## 478                     5                            2                   4
## 479                     1                            5                   2
## 480                     1                            1                   2
## 481                     5                            5                   4
## 482                     1                            4                   2
## 483                     1                            3                   1
## 484                     5                            5                   2
## 485                     4                            4                   3
## 486                     1                            3                   3
## 487                     1                            2                   3
## 488                     1                            5                   3
## 489                     1                            3                   2
## 490                     5                            2                   2
## 491                     1                            2                   4
## 492                     1                            5                   2
## 493                     1                            4                   3
## 494                     1                            5                   4
## 495                     1                            5                   4
## 496                     2                            4                   4
## 497                     1                            4                   2
## 498                     5                            4                   3
## 499                     1                            1                   1
## 500                     3                            5                   3
## 501                     1                            2                   4
## 502                     2                            4                   4
## 503                     1                            4                   3
## 504                     1                            3                   4
## 505                     1                            4                   3
## 506                     1                            5                   2
## 507                     5                            5                   4
## 508                     5                            3                   2
## 509                     1                            5                   4
## 510                     2                            5                   3
## 511                     3                            3                   1
## 512                     1                            2                   1
## 513                     2                            2                   4
## 514                     1                            2                   2
## 515                     4                            4                   2
## 516                     2                            2                   2
## 517                     2                            4                   4
## 518                     1                            3                   4
## 519                     5                            2                   1
## 520                     1                            2                   2
## 521                     1                            3                   4
## 522                     1                            1                   4
## 523                     1                            3                   3
## 524                     5                            2                   4
## 525                     1                            1                   4
## 526                     1                            3                   2
## 527                     1                            3                   4
## 528                     1                            4                   2
## 529                     1                            3                   4
## 530                     1                            3                   2
## 531                     1                            4                   2
## 532                     5                            4                   4
## 533                     1                            3                   2
## 534                     1                            4                   4
## 535                     1                            2                   4
## 536                     1                            5                   4
## 537                     1                            4                   1
## 538                     1                            4                   2
## 539                     5                            5                   4
## 540                     1                            3                   1
## 541                     1                            2                   4
## 542                     5                            4                   4
## 543                     1                            3                   4
## 544                     1                            2                   4
## 545                     1                            4                   2
## 546                     1                            2                   3
## 547                     5                            3                   4
## 548                     5                            4                   4
## 549                     4                            3                   4
## 550                     3                            4                   3
## 551                     1                            4                   3
## 552                     1                            4                   2
## 553                     1                            3                   3
## 554                     5                            4                   4
## 555                     4                            2                   4
## 556                     1                            3                   2
## 557                     3                            2                   1
## 558                     1                            2                   4
## 559                     5                            1                   2
## 560                     3                            5                   1
## 561                     5                            2                   2
## 562                     1                            4                   3
## 563                     2                            2                   4
## 564                     2                            5                   4
## 565                     2                            3                   2
## 566                     2                            4                   3
## 567                     2                            4                   1
## 568                     2                            3                   4
## 569                     1                            5                   4
## 570                     5                            4                   4
## 571                     1                            2                   4
## 572                     5                            3                   2
## 573                     1                            2                   2
## 574                     4                            3                   4
## 575                     1                            3                   2
## 576                     5                            3                   2
## 577                     1                            5                   4
## 578                     1                            3                   4
## 579                     3                            3                   1
## 580                     5                            4                   4
## 581                     1                            4                   4
## 582                     2                            1                   1
## 583                     2                            5                   2
## 584                     2                            1                   4
## 585                     1                            5                   4
## 586                     1                            4                   2
## 587                     1                            5                   2
## 588                     1                            3                   1
## 589                     1                            4                   4
## 590                     1                            2                   3
## 591                     1                            3                   2
## 592                     1                            5                   3
## 593                     1                            2                   4
## 594                     1                            1                   1
## 595                     1                            3                   2
## 596                     1                            3                   3
## 597                     1                            3                   2
## 598                     1                            5                   4
## 599                     1                            5                   1
## 600                     1                            4                   4
## 601                     1                            3                   2
## 602                     1                            4                   2
## 603                     5                            1                   4
## 604                     1                            3                   4
## 605                     1                            5                   2
## 606                     1                            3                   2
## 607                     1                            1                   4
## 608                     1                            4                   4
## 609                     1                            4                   4
## 610                     2                            5                   4
## 611                     2                            2                   4
## 612                     1                            3                   2
## 613                     1                            3                   2
## 614                     1                            2                   4
## 615                     1                            1                   4
## 616                     1                            3                   4
## 617                     1                            5                   3
## 618                     2                            4                   4
## 619                     1                            2                   2
## 620                     1                            4                   2
## 621                     5                            3                   2
## 622                     1                            1                   4
## 623                     1                            5                   4
## 624                     1                            3                   2
## 625                     1                            1                   2
## 626                     1                            1                   4
## 627                     5                            1                   4
## 628                     4                            5                   4
## 629                     5                            1                   4
## 630                     1                            1                   3
## 631                     1                            3                   4
## 632                     1                            4                   2
## 633                     1                            3                   4
## 634                     1                            1                   4
## 635                     1                            4                   2
## 636                     1                            2                   4
## 637                     1                            5                   3
## 638                     1                            2                   3
## 639                     1                            5                   1
## 640                     1                            5                   4
## 641                     1                            3                   3
## 642                     1                            2                   2
## 643                     1                            5                   2
## 644                     1                            5                   4
## 645                     1                            5                   4
## 646                     1                            1                   2
## 647                     2                            5                   4
## 648                     5                            5                   3
## 649                     2                            5                   4
## 650                     2                            3                   4
## 651                     5                            3                   1
## 652                     5                            5                   4
## 653                     5                            5                   4
## 654                     5                            5                   4
## 655                     5                            3                   4
## 656                     5                            5                   4
## 657                     2                            2                   4
## 658                     1                            3                   2
## 659                     1                            3                   2
## 660                     1                            2                   3
## 661                     1                            3                   4
## 662                     1                            4                   4
## 663                     1                            3                   4
## 664                     1                            5                   4
## 665                     1                            5                   4
## 666                     1                            3                   4
## 667                     1                            2                   1
## 668                     1                            2                   4
## 669                     1                            3                   4
## 670                     1                            3                   3
## 671                     1                            2                   2
## 672                     1                            5                   4
## 673                     1                            3                   4
## 674                     1                            4                   4
## 675                     1                            2                   4
## 676                     2                            5                   2
## 677                     1                            3                   4
## 678                     1                            5                   3
## 679                     5                            4                   4
## 680                     1                            4                   3
## 681                     1                            3                   4
## 682                     1                            5                   3
## 683                     5                            4                   3
## 684                     5                            5                   4
## 685                     1                            3                   4
## 686                     1                            4                   4
## 687                     1                            3                   4
## 688                     5                            2                   3
## 689                     1                            2                   1
## 690                     2                            3                   4
## 691                     2                            4                   2
## 692                     1                            3                   4
## 693                     1                            2                   3
## 694                     1                            2                   1
## 695                     1                            3                   3
## 696                     1                            4                   2
## 697                     1                            3                   2
## 698                     1                            3                   4
## 699                     2                            1                   3
## 700                     4                            5                   4
## 701                     5                            5                   3
## 702                     1                            3                   3
## 703                     5                            3                   1
## 704                     4                            5                   4
## 705                     5                            5                   4
## 706                     3                            4                   4
## 707                     5                            5                   4
## 708                     5                            5                   4
## 709                     1                            4                   2
## 710                     1                            3                   1
## 711                     1                            5                   4
## 712                     1                            1                   4
## 713                     5                            5                   4
## 714                     5                            5                   4
## 715                     1                            3                   2
## 716                     1                            3                   4
## 717                     1                            4                   4
## 718                     4                            3                   2
## 719                     5                            2                   4
## 720                     2                            3                   2
## 721                     1                            5                   4
## 722                     1                            5                   4
## 723                     1                            3                   3
## 724                     5                            4                   3
## 725                     1                            3                   2
## 726                     1                            3                   1
## 727                     3                            4                   1
## 728                     1                            5                   4
## 729                     5                            3                   4
## 730                     5                            3                   2
## 731                     1                            1                   1
## 732                     5                            3                   4
## 733                     4                            5                   3
## 734                     1                            1                   1
## 735                     1                            5                   2
## 736                     3                            3                   1
## 737                     1                            5                   4
## 738                     4                            3                   4
## 739                     1                            5                   4
## 740                     2                            5                   3
## 741                     1                            4                   3
## 742                     4                            4                   2
## 743                     5                            3                   2
## 744                     5                            5                   1
## 745                     5                            4                   2
## 746                     1                            3                   1
## 747                     5                            5                   4
## 748                     1                            5                   3
## 749                     1                            4                   4
## 750                     1                            5                   3
## 751                     2                            5                   4
## 752                     1                            3                   4
## 753                     4                            5                   4
## 754                     3                            2                   3
## 755                     5                            1                   1
## 756                     1                            5                   4
## 757                     1                            5                   4
## 758                     1                            3                   4
## 759                     1                            3                   4
## 760                     1                            2                   4
## 761                     1                            4                   4
## 762                     1                            3                   4
## 763                     5                            3                   1
## 764                     1                            3                   4
## 765                     1                            5                   4
## 766                     1                            4                   4
## 767                     1                            4                   2
## 768                     1                            3                   3
## 769                     2                            4                   2
## 770                     5                            3                   4
## 771                     1                            1                   4
## 772                     1                            2                   3
## 773                     1                            3                   4
## 774                     1                            4                   2
## 775                     1                            4                   2
## 776                     1                            2                   4
## 777                     1                            5                   4
## 778                     1                            3                   1
## 779                     1                            3                   4
## 780                     2                            3                   3
## 781                     1                            4                   2
## 782                     1                            2                   4
## 783                     1                            5                   4
## 784                     4                            2                   4
## 785                     1                            3                   4
## 786                     3                            5                   3
## 787                     2                            2                   1
## 788                     4                            3                   3
## 789                     1                            3                   1
## 790                     1                            2                   2
## 791                     1                            2                   2
## 792                     1                            2                   2
## 793                     1                            2                   2
## 794                     1                            2                   4
## 795                     1                            5                   4
## 796                     1                            5                   4
## 797                     1                            3                   2
## 798                     1                            2                   2
## 799                     5                            5                   4
## 800                     1                            4                   4
## 801                     5                            3                   4
## 802                     5                            4                   4
## 803                     5                            3                   4
## 804                     5                            3                   4
## 805                     5                            3                   4
## 806                     1                            2                   4
## 807                     2                            2                   3
## 808                     1                            5                   3
## 809                     1                            5                   4
## 810                     1                            5                   4
## 811                     1                            3                   2
## 812                     1                            5                   4
## 813                     1                            2                   4
## 814                     1                            3                   2
## 815                     1                            5                   2
## 816                     1                            4                   4
## 817                     2                            5                   1
## 818                     1                            4                   4
## 819                     1                            3                   3
## 820                     1                            2                   2
## 821                     4                            4                   1
## 822                     1                            3                   4
## 823                     1                            2                   4
## 824                     1                            3                   3
## 825                     1                            2                   4
## 826                     1                            1                   4
## 827                     2                            4                   4
## 828                     1                            5                   3
## 829                     1                            3                   4
## 830                     1                            3                   2
## 831                     1                            3                   4
## 832                     1                            3                   4
## 833                     5                            2                   4
## 834                     1                            3                   4
## 835                     1                            2                   1
## 836                     1                            3                   1
## 837                     1                            3                   2
## 838                     1                            4                   3
## 839                     1                            5                   2
## 840                     3                            3                   2
## 841                     5                            5                   4
## 842                     1                            2                   2
## 843                     3                            3                   4
## 844                     1                            3                   2
## 845                     1                            3                   2
## 846                     3                            3                   4
## 847                     2                            2                   4
## 848                     2                            5                   3
## 849                     2                            3                   4
## 850                     2                            3                   1
## 851                     2                            3                   4
## 852                     1                            3                   4
## 853                     1                            5                   4
## 854                     5                            4                   4
## 855                     1                            2                   4
## 856                     1                            4                   4
## 857                     3                            2                   4
## 858                     1                            3                   4
## 859                     1                            2                   4
## 860                     2                            2                   4
## 861                     5                            3                   4
## 862                     1                            2                   3
## 863                     1                            2                   1
## 864                     1                            4                   2
## 865                     1                            3                   4
## 866                     5                            3                   3
## 867                     1                            2                   3
## 868                     1                            2                   1
## 869                     2                            2                   4
## 870                     1                            2                   3
## 871                     1                            3                   3
## 872                     1                            3                   4
## 873                     1                            1                   3
## 874                     1                            2                   1
## 875                     1                            4                   4
## 876                     1                            1                   4
## 877                     1                            1                   4
## 878                     1                            3                   3
## 879                     1                            2                   3
## 880                     5                            5                   4
## 881                     1                            1                   4
## 882                     1                            2                   4
## 883                     1                            5                   4
## 884                     2                            3                   2
## 885                     2                            3                   2
## 886                     2                            4                   3
## 887                     1                            2                   4
## 888                     1                            3                   3
## 889                     1                            2                   4
## 890                     2                            2                   4
## 891                     1                            4                   4
## 892                     1                            4                   4
## 893                     5                            3                   2
## 894                     1                            1                   4
## 895                     1                            1                   3
## 896                     1                            1                   3
## 897                     3                            2                   4
## 898                     1                            3                   3
## 899                     1                            3                   4
## 900                     5                            3                   4
## 901                     1                            4                   2
## 902                     1                            2                   4
## 903                     1                            5                   4
## 904                     1                            3                   2
## 905                     1                            2                   1
## 906                     1                            3                   4
## 907                     1                            3                   4
## 908                     1                            4                   4
## 909                     1                            1                   4
## 910                     1                            3                   3
## 911                     1                            3                   3
## 912                     1                            5                   4
## 913                     1                            4                   3
## 914                     1                            5                   4
## 915                     1                            5                   3
## 916                     1                            3                   2
## 917                     1                            3                   2
## 918                     1                            2                   4
## 919                     1                            5                   3
## 920                     1                            5                   4
## 921                     1                            4                   3
## 922                     1                            2                   4
## 923                     1                            4                   4
## 924                     1                            1                   2
## 925                     1                            2                   2
## 926                     1                            3                   1
## 927                     1                            3                   4
## 928                     1                            4                   4
## 929                     1                            4                   4
## 930                     1                            3                   2
## 931                     1                            5                   3
## 932                     1                            2                   3
## 933                     1                            5                   1
## 934                     1                            4                   2
## 935                     1                            5                   2
## 936                     1                            3                   4
## 937                     1                            3                   1
## 938                     1                            5                   4
## 939                     1                            2                   4
## 940                     2                            5                   2
## 941                     3                            3                   2
## 942                     1                            5                   4
## 943                     1                            5                   4
## 944                     5                            3                   1
## 945                     1                            5                   4
## 946                     2                            1                   1
## 947                     1                            3                   2
## 948                     5                            1                   4
## 949                     1                            4                   4
## 950                     5                            5                   4
## 951                     1                            2                   4
## 952                     3                            4                   4
## 953                     1                            5                   2
## 954                     2                            3                   2
## 955                     1                            2                   4
## 956                     1                            1                   2
## 957                     2                            5                   4
## 958                     2                            3                   2
## 959                     2                            3                   4
## 960                     2                            2                   3
## 961                     5                            3                   2
## 962                     1                            2                   2
## 963                     1                            2                   3
## 964                     1                            2                   4
## 965                     1                            5                   4
## 966                     1                            2                   1
## 967                     1                            2                   2
## 968                     1                            3                   4
## 969                     1                            3                   4
## 970                     5                            3                   4
## 971                     1                            1                   3
## 972                     1                            5                   2
## 973                     1                            3                   4
## 974                     1                            5                   2
## 975                     1                            2                   4
## 976                     1                            2                   1
## 977                     1                            3                   1
## 978                     1                            5                   1
## 979                     5                            5                   1
## 980                     1                            5                   3
## 981                     1                            2                   1
## 982                     1                            3                   4
## 983                     1                            3                   2
## 984                     1                            3                   4
## 985                     1                            4                   1
## 986                     1                            1                   4
## 987                     1                            5                   1
## 988                     2                            4                   4
## 989                     1                            2                   1
## 990                     1                            3                   3
## 991                     1                            1                   4
## 992                     1                            5                   4
## 993                     5                            5                   1
## 994                     1                            5                   1
## 995                     1                            3                   4
## 996                     1                            3                   2
## 997                     1                            5                   4
## 998                     5                            5                   4
## 999                     5                            1                   2
## 1000                    5                            5                   4
##      Sex...Marital.Status Guarantors Duration.in.Current.address
## 1                       2          1                           4
## 2                       3          1                           2
## 3                       2          1                           4
## 4                       3          1                           2
## 5                       3          1                           4
## 6                       3          1                           3
## 7                       3          1                           4
## 8                       3          1                           4
## 9                       2          1                           4
## 10                      2          1                           4
## 11                      3          1                           2
## 12                      4          1                           4
## 13                      2          1                           4
## 14                      3          1                           4
## 15                      4          1                           4
## 16                      3          1                           3
## 17                      3          1                           2
## 18                      4          1                           3
## 19                      3          1                           4
## 20                      3          1                           4
## 21                      3          1                           3
## 22                      3          1                           3
## 23                      3          1                           1
## 24                      3          1                           3
## 25                      3          1                           3
## 26                      3          1                           4
## 27                      2          1                           4
## 28                      3          1                           4
## 29                      3          1                           2
## 30                      3          1                           4
## 31                      3          1                           4
## 32                      3          1                           4
## 33                      3          1                           4
## 34                      2          1                           1
## 35                      3          1                           3
## 36                      2          1                           4
## 37                      3          1                           1
## 38                      3          1                           2
## 39                      3          1                           1
## 40                      2          1                           2
## 41                      2          1                           4
## 42                      2          3                           4
## 43                      2          1                           3
## 44                      3          1                           3
## 45                      3          1                           4
## 46                      2          1                           3
## 47                      3          1                           1
## 48                      2          1                           2
## 49                      4          1                           3
## 50                      3          1                           1
## 51                      1          1                           2
## 52                      3          1                           2
## 53                      3          1                           1
## 54                      3          2                           4
## 55                      3          1                           4
## 56                      2          1                           3
## 57                      3          1                           4
## 58                      4          1                           2
## 59                      3          1                           3
## 60                      3          1                           4
## 61                      3          1                           4
## 62                      2          1                           1
## 63                      3          1                           1
## 64                      3          1                           2
## 65                      3          1                           2
## 66                      2          1                           1
## 67                      3          1                           4
## 68                      3          1                           2
## 69                      2          1                           1
## 70                      3          1                           4
## 71                      3          1                           2
## 72                      3          1                           4
## 73                      3          1                           4
## 74                      3          1                           2
## 75                      3          1                           3
## 76                      3          1                           1
## 77                      3          1                           4
## 78                      3          1                           4
## 79                      4          1                           3
## 80                      3          1                           2
## 81                      2          1                           4
## 82                      3          1                           2
## 83                      3          1                           2
## 84                      3          1                           2
## 85                      3          1                           4
## 86                      3          1                           3
## 87                      3          1                           3
## 88                      2          1                           4
## 89                      2          1                           4
## 90                      2          1                           4
## 91                      3          1                           1
## 92                      2          1                           4
## 93                      2          1                           1
## 94                      3          1                           4
## 95                      3          1                           1
## 96                      3          1                           2
## 97                      2          1                           1
## 98                      1          1                           2
## 99                      3          1                           2
## 100                     2          1                           1
## 101                     3          1                           4
## 102                     2          1                           4
## 103                     3          1                           2
## 104                     2          1                           2
## 105                     4          3                           2
## 106                     3          3                           2
## 107                     2          3                           2
## 108                     4          1                           4
## 109                     2          1                           3
## 110                     2          1                           2
## 111                     2          1                           2
## 112                     2          1                           1
## 113                     1          1                           3
## 114                     2          1                           1
## 115                     3          1                           3
## 116                     3          1                           3
## 117                     3          1                           3
## 118                     2          1                           4
## 119                     3          1                           2
## 120                     3          1                           3
## 121                     2          1                           1
## 122                     3          1                           2
## 123                     4          1                           3
## 124                     2          1                           2
## 125                     3          1                           3
## 126                     4          1                           3
## 127                     2          1                           1
## 128                     3          1                           2
## 129                     4          1                           2
## 130                     3          1                           4
## 131                     3          1                           2
## 132                     3          1                           4
## 133                     3          1                           2
## 134                     2          1                           1
## 135                     2          1                           4
## 136                     1          1                           2
## 137                     3          1                           4
## 138                     3          1                           3
## 139                     2          1                           3
## 140                     3          1                           2
## 141                     2          1                           4
## 142                     3          1                           4
## 143                     2          1                           4
## 144                     3          1                           3
## 145                     2          1                           4
## 146                     3          1                           4
## 147                     3          1                           4
## 148                     1          1                           4
## 149                     3          1                           4
## 150                     3          1                           2
## 151                     2          1                           3
## 152                     2          1                           2
## 153                     3          1                           1
## 154                     3          1                           3
## 155                     1          1                           1
## 156                     3          1                           2
## 157                     2          1                           1
## 158                     3          2                           2
## 159                     2          1                           3
## 160                     3          1                           4
## 161                     2          1                           2
## 162                     1          1                           4
## 163                     2          1                           4
## 164                     3          1                           2
## 165                     2          1                           4
## 166                     3          1                           4
## 167                     2          1                           2
## 168                     3          1                           2
## 169                     2          2                           3
## 170                     2          1                           1
## 171                     3          1                           1
## 172                     2          1                           2
## 173                     4          1                           4
## 174                     3          1                           1
## 175                     3          1                           2
## 176                     1          1                           2
## 177                     3          1                           3
## 178                     3          1                           4
## 179                     3          1                           1
## 180                     3          1                           1
## 181                     2          1                           4
## 182                     2          1                           1
## 183                     3          1                           3
## 184                     2          1                           2
## 185                     2          1                           2
## 186                     3          1                           2
## 187                     3          1                           3
## 188                     3          1                           2
## 189                     3          1                           1
## 190                     2          1                           1
## 191                     3          1                           4
## 192                     4          1                           2
## 193                     2          1                           2
## 194                     3          1                           1
## 195                     3          1                           2
## 196                     3          1                           2
## 197                     3          1                           3
## 198                     2          1                           2
## 199                     3          1                           1
## 200                     2          1                           1
## 201                     3          1                           2
## 202                     3          3                           4
## 203                     3          1                           4
## 204                     2          1                           2
## 205                     3          2                           2
## 206                     3          2                           1
## 207                     3          1                           2
## 208                     3          1                           1
## 209                     3          2                           4
## 210                     3          2                           4
## 211                     3          1                           2
## 212                     3          1                           4
## 213                     3          1                           4
## 214                     3          1                           1
## 215                     3          1                           2
## 216                     3          3                           1
## 217                     2          1                           4
## 218                     4          1                           2
## 219                     2          1                           1
## 220                     3          2                           2
## 221                     3          2                           4
## 222                     3          1                           4
## 223                     3          1                           3
## 224                     3          1                           2
## 225                     3          1                           2
## 226                     2          1                           1
## 227                     3          1                           4
## 228                     3          1                           2
## 229                     2          1                           4
## 230                     3          1                           2
## 231                     3          1                           1
## 232                     4          1                           4
## 233                     3          1                           2
## 234                     1          1                           4
## 235                     4          1                           3
## 236                     2          1                           4
## 237                     3          1                           2
## 238                     3          1                           4
## 239                     2          1                           3
## 240                     3          1                           4
## 241                     4          1                           2
## 242                     3          1                           4
## 243                     2          1                           4
## 244                     3          1                           3
## 245                     3          1                           4
## 246                     2          1                           4
## 247                     3          1                           2
## 248                     3          1                           3
## 249                     2          1                           2
## 250                     3          1                           3
## 251                     3          1                           4
## 252                     3          1                           4
## 253                     3          1                           4
## 254                     3          1                           2
## 255                     3          1                           2
## 256                     3          1                           4
## 257                     2          1                           4
## 258                     2          1                           3
## 259                     3          1                           4
## 260                     3          1                           4
## 261                     3          1                           3
## 262                     2          1                           4
## 263                     2          1                           2
## 264                     3          1                           4
## 265                     2          1                           3
## 266                     3          1                           4
## 267                     3          1                           2
## 268                     3          1                           4
## 269                     2          1                           4
## 270                     3          1                           4
## 271                     3          1                           4
## 272                     2          1                           4
## 273                     4          1                           4
## 274                     3          1                           4
## 275                     3          1                           4
## 276                     2          1                           3
## 277                     2          1                           2
## 278                     3          1                           3
## 279                     2          1                           4
## 280                     1          1                           4
## 281                     2          1                           1
## 282                     2          1                           2
## 283                     2          1                           4
## 284                     1          1                           4
## 285                     2          1                           2
## 286                     2          1                           4
## 287                     3          1                           4
## 288                     3          1                           2
## 289                     3          1                           4
## 290                     4          1                           3
## 291                     3          1                           1
## 292                     2          1                           4
## 293                     3          1                           2
## 294                     1          1                           2
## 295                     2          1                           2
## 296                     2          1                           2
## 297                     2          1                           4
## 298                     3          1                           2
## 299                     2          1                           4
## 300                     4          1                           3
## 301                     4          1                           1
## 302                     3          1                           2
## 303                     2          1                           4
## 304                     3          1                           2
## 305                     2          1                           2
## 306                     4          1                           4
## 307                     3          1                           2
## 308                     3          3                           2
## 309                     2          1                           4
## 310                     3          1                           2
## 311                     3          1                           4
## 312                     3          1                           3
## 313                     2          1                           2
## 314                     3          1                           1
## 315                     3          1                           4
## 316                     3          1                           4
## 317                     3          1                           4
## 318                     4          1                           1
## 319                     3          1                           2
## 320                     3          1                           1
## 321                     3          1                           2
## 322                     2          2                           2
## 323                     1          1                           2
## 324                     2          2                           3
## 325                     3          1                           2
## 326                     2          1                           4
## 327                     3          1                           2
## 328                     3          1                           4
## 329                     3          1                           3
## 330                     3          1                           4
## 331                     2          1                           2
## 332                     2          1                           2
## 333                     2          1                           2
## 334                     2          1                           4
## 335                     4          1                           4
## 336                     3          2                           1
## 337                     3          3                           4
## 338                     3          2                           3
## 339                     3          2                           2
## 340                     3          1                           2
## 341                     3          1                           2
## 342                     2          3                           4
## 343                     3          1                           4
## 344                     3          3                           2
## 345                     2          1                           3
## 346                     3          1                           4
## 347                     3          1                           4
## 348                     3          1                           4
## 349                     3          1                           2
## 350                     3          1                           2
## 351                     4          1                           1
## 352                     2          1                           3
## 353                     1          1                           2
## 354                     2          2                           2
## 355                     3          1                           4
## 356                     3          1                           4
## 357                     3          3                           4
## 358                     3          1                           4
## 359                     2          1                           2
## 360                     2          1                           4
## 361                     3          1                           4
## 362                     2          1                           1
## 363                     4          1                           2
## 364                     2          1                           2
## 365                     3          1                           4
## 366                     3          1                           4
## 367                     2          1                           3
## 368                     3          1                           2
## 369                     2          1                           4
## 370                     1          1                           2
## 371                     4          1                           2
## 372                     3          1                           2
## 373                     2          1                           4
## 374                     2          1                           1
## 375                     3          1                           3
## 376                     3          1                           2
## 377                     3          1                           3
## 378                     3          1                           2
## 379                     3          3                           2
## 380                     3          1                           3
## 381                     2          1                           4
## 382                     2          1                           4
## 383                     3          1                           4
## 384                     4          1                           4
## 385                     3          1                           4
## 386                     3          1                           3
## 387                     2          1                           1
## 388                     3          1                           4
## 389                     3          1                           2
## 390                     2          1                           4
## 391                     3          1                           2
## 392                     3          1                           4
## 393                     2          1                           4
## 394                     3          1                           4
## 395                     3          1                           1
## 396                     2          1                           4
## 397                     3          1                           2
## 398                     3          1                           2
## 399                     4          1                           4
## 400                     3          1                           2
## 401                     2          1                           1
## 402                     3          1                           4
## 403                     2          1                           2
## 404                     2          1                           4
## 405                     3          1                           2
## 406                     3          1                           4
## 407                     3          1                           2
## 408                     4          1                           1
## 409                     4          1                           3
## 410                     4          1                           4
## 411                     2          1                           4
## 412                     3          1                           4
## 413                     3          1                           4
## 414                     3          1                           2
## 415                     3          1                           4
## 416                     3          1                           2
## 417                     2          1                           4
## 418                     3          1                           2
## 419                     3          1                           3
## 420                     3          1                           4
## 421                     4          1                           2
## 422                     2          1                           4
## 423                     3          1                           3
## 424                     2          1                           4
## 425                     3          1                           4
## 426                     3          1                           4
## 427                     3          1                           3
## 428                     2          1                           3
## 429                     2          1                           4
## 430                     2          1                           2
## 431                     2          1                           4
## 432                     3          1                           4
## 433                     3          1                           4
## 434                     4          1                           4
## 435                     3          1                           4
## 436                     3          1                           4
## 437                     2          1                           3
## 438                     2          1                           2
## 439                     3          1                           4
## 440                     4          1                           3
## 441                     2          1                           4
## 442                     3          1                           4
## 443                     3          1                           4
## 444                     4          1                           2
## 445                     3          1                           4
## 446                     3          1                           2
## 447                     3          1                           4
## 448                     2          1                           2
## 449                     3          1                           2
## 450                     2          1                           3
## 451                     3          1                           3
## 452                     3          1                           4
## 453                     3          1                           4
## 454                     2          1                           4
## 455                     3          1                           4
## 456                     3          1                           1
## 457                     3          1                           3
## 458                     3          1                           2
## 459                     3          1                           2
## 460                     4          1                           4
## 461                     1          1                           4
## 462                     3          1                           4
## 463                     2          1                           4
## 464                     3          1                           2
## 465                     2          1                           2
## 466                     2          1                           4
## 467                     3          1                           2
## 468                     2          1                           4
## 469                     3          1                           4
## 470                     3          1                           4
## 471                     3          1                           4
## 472                     3          1                           2
## 473                     3          1                           2
## 474                     2          1                           4
## 475                     3          1                           2
## 476                     4          1                           3
## 477                     3          1                           4
## 478                     3          1                           2
## 479                     2          1                           4
## 480                     2          1                           4
## 481                     3          1                           4
## 482                     2          1                           4
## 483                     3          1                           2
## 484                     3          1                           4
## 485                     2          1                           2
## 486                     2          1                           2
## 487                     1          1                           2
## 488                     2          1                           4
## 489                     4          1                           2
## 490                     3          1                           3
## 491                     3          1                           1
## 492                     3          1                           4
## 493                     3          1                           1
## 494                     4          2                           3
## 495                     3          1                           3
## 496                     4          1                           3
## 497                     4          1                           2
## 498                     3          1                           4
## 499                     2          1                           2
## 500                     4          1                           1
## 501                     4          1                           2
## 502                     4          1                           3
## 503                     3          1                           2
## 504                     1          1                           2
## 505                     3          1                           3
## 506                     4          1                           2
## 507                     2          1                           2
## 508                     3          1                           4
## 509                     3          1                           4
## 510                     3          1                           2
## 511                     4          1                           2
## 512                     2          1                           2
## 513                     1          1                           2
## 514                     4          1                           1
## 515                     2          1                           3
## 516                     3          1                           1
## 517                     3          1                           4
## 518                     3          1                           4
## 519                     2          1                           1
## 520                     2          1                           4
## 521                     2          1                           2
## 522                     2          1                           2
## 523                     2          1                           1
## 524                     2          1                           2
## 525                     3          1                           2
## 526                     2          1                           2
## 527                     4          1                           2
## 528                     2          1                           1
## 529                     3          1                           2
## 530                     2          1                           1
## 531                     3          1                           1
## 532                     3          1                           4
## 533                     2          1                           2
## 534                     4          1                           1
## 535                     2          1                           1
## 536                     2          1                           4
## 537                     2          1                           1
## 538                     3          1                           1
## 539                     3          1                           2
## 540                     2          1                           4
## 541                     2          1                           2
## 542                     3          1                           1
## 543                     3          1                           2
## 544                     2          1                           1
## 545                     3          1                           1
## 546                     4          1                           2
## 547                     2          1                           1
## 548                     3          1                           2
## 549                     4          1                           1
## 550                     2          1                           4
## 551                     3          1                           4
## 552                     3          1                           3
## 553                     4          1                           2
## 554                     2          1                           3
## 555                     2          1                           1
## 556                     2          1                           2
## 557                     2          1                           1
## 558                     2          1                           1
## 559                     2          1                           4
## 560                     4          1                           2
## 561                     1          1                           4
## 562                     3          1                           1
## 563                     2          1                           2
## 564                     2          1                           2
## 565                     3          1                           2
## 566                     2          1                           2
## 567                     3          1                           3
## 568                     2          1                           4
## 569                     3          1                           4
## 570                     3          1                           3
## 571                     3          1                           1
## 572                     3          1                           4
## 573                     3          1                           3
## 574                     3          1                           2
## 575                     3          1                           2
## 576                     3          1                           2
## 577                     3          1                           2
## 578                     3          1                           4
## 579                     2          1                           4
## 580                     2          1                           3
## 581                     3          3                           4
## 582                     1          1                           1
## 583                     3          1                           4
## 584                     2          1                           3
## 585                     3          1                           4
## 586                     3          1                           1
## 587                     3          1                           4
## 588                     3          3                           2
## 589                     2          3                           1
## 590                     2          1                           1
## 591                     3          1                           2
## 592                     3          1                           4
## 593                     2          2                           4
## 594                     2          2                           4
## 595                     1          3                           2
## 596                     3          3                           2
## 597                     3          3                           3
## 598                     3          1                           4
## 599                     3          3                           3
## 600                     3          1                           2
## 601                     3          1                           2
## 602                     3          1                           2
## 603                     2          1                           3
## 604                     3          3                           1
## 605                     3          1                           2
## 606                     1          1                           3
## 607                     3          1                           1
## 608                     2          1                           3
## 609                     3          1                           3
## 610                     3          1                           4
## 611                     2          1                           2
## 612                     1          1                           1
## 613                     2          2                           3
## 614                     2          3                           1
## 615                     3          1                           2
## 616                     2          3                           4
## 617                     3          1                           4
## 618                     3          1                           3
## 619                     1          1                           4
## 620                     3          1                           3
## 621                     1          1                           4
## 622                     3          2                           2
## 623                     3          1                           4
## 624                     3          2                           2
## 625                     3          1                           4
## 626                     3          1                           4
## 627                     3          1                           4
## 628                     3          1                           4
## 629                     3          1                           4
## 630                     2          1                           4
## 631                     2          1                           3
## 632                     3          3                           4
## 633                     3          1                           4
## 634                     3          1                           3
## 635                     3          1                           4
## 636                     3          1                           1
## 637                     3          1                           3
## 638                     3          1                           1
## 639                     2          1                           4
## 640                     3          1                           4
## 641                     4          1                           2
## 642                     1          1                           1
## 643                     2          1                           4
## 644                     2          1                           4
## 645                     3          1                           4
## 646                     1          2                           3
## 647                     3          1                           4
## 648                     3          1                           3
## 649                     3          1                           2
## 650                     3          1                           4
## 651                     2          1                           4
## 652                     3          1                           4
## 653                     3          1                           4
## 654                     3          1                           4
## 655                     3          1                           4
## 656                     3          1                           2
## 657                     3          1                           4
## 658                     2          3                           3
## 659                     3          3                           2
## 660                     4          1                           3
## 661                     3          3                           2
## 662                     3          3                           3
## 663                     4          2                           4
## 664                     3          1                           4
## 665                     3          1                           4
## 666                     2          3                           4
## 667                     2          3                           1
## 668                     3          3                           4
## 669                     4          3                           2
## 670                     3          3                           2
## 671                     2          3                           4
## 672                     4          3                           2
## 673                     2          3                           4
## 674                     2          3                           2
## 675                     4          3                           1
## 676                     1          1                           4
## 677                     3          1                           4
## 678                     2          3                           4
## 679                     3          3                           2
## 680                     4          3                           3
## 681                     3          1                           4
## 682                     4          3                           3
## 683                     3          1                           4
## 684                     3          3                           4
## 685                     3          1                           3
## 686                     3          1                           3
## 687                     1          1                           2
## 688                     2          1                           2
## 689                     2          1                           1
## 690                     2          1                           2
## 691                     2          1                           4
## 692                     4          1                           3
## 693                     4          1                           1
## 694                     2          1                           2
## 695                     3          1                           2
## 696                     3          1                           4
## 697                     2          1                           2
## 698                     4          1                           2
## 699                     3          1                           4
## 700                     2          1                           4
## 701                     3          1                           4
## 702                     3          1                           4
## 703                     2          1                           2
## 704                     2          1                           4
## 705                     3          1                           4
## 706                     3          1                           3
## 707                     3          2                           4
## 708                     3          1                           4
## 709                     2          3                           4
## 710                     3          1                           3
## 711                     2          2                           4
## 712                     3          2                           4
## 713                     3          1                           4
## 714                     2          1                           4
## 715                     3          3                           3
## 716                     3          1                           2
## 717                     3          1                           1
## 718                     3          1                           3
## 719                     2          1                           3
## 720                     4          1                           2
## 721                     3          1                           4
## 722                     3          1                           4
## 723                     3          1                           2
## 724                     3          1                           2
## 725                     3          1                           2
## 726                     4          1                           3
## 727                     2          1                           2
## 728                     3          1                           4
## 729                     3          1                           2
## 730                     3          1                           2
## 731                     3          1                           2
## 732                     3          1                           4
## 733                     3          1                           4
## 734                     2          1                           4
## 735                     3          1                           4
## 736                     1          1                           4
## 737                     3          1                           4
## 738                     3          1                           3
## 739                     3          1                           4
## 740                     4          1                           4
## 741                     2          1                           4
## 742                     1          1                           4
## 743                     4          1                           4
## 744                     3          1                           4
## 745                     2          1                           4
## 746                     4          1                           2
## 747                     3          1                           4
## 748                     3          1                           4
## 749                     2          1                           4
## 750                     1          1                           4
## 751                     3          1                           3
## 752                     3          1                           3
## 753                     3          1                           3
## 754                     2          1                           4
## 755                     3          1                           2
## 756                     3          1                           3
## 757                     3          1                           4
## 758                     3          1                           4
## 759                     2          3                           2
## 760                     1          1                           4
## 761                     3          1                           4
## 762                     3          1                           4
## 763                     2          1                           4
## 764                     3          1                           4
## 765                     3          1                           4
## 766                     3          1                           2
## 767                     3          3                           2
## 768                     3          1                           2
## 769                     3          1                           3
## 770                     2          1                           2
## 771                     3          1                           2
## 772                     3          1                           2
## 773                     4          1                           3
## 774                     3          1                           1
## 775                     3          1                           1
## 776                     2          1                           4
## 777                     1          1                           3
## 778                     1          1                           4
## 779                     4          1                           2
## 780                     3          1                           2
## 781                     3          1                           2
## 782                     4          1                           4
## 783                     3          1                           2
## 784                     2          1                           2
## 785                     1          1                           1
## 786                     3          1                           2
## 787                     2          1                           1
## 788                     4          1                           3
## 789                     3          1                           4
## 790                     2          1                           4
## 791                     2          1                           1
## 792                     2          1                           3
## 793                     1          1                           1
## 794                     2          1                           4
## 795                     3          1                           4
## 796                     3          1                           4
## 797                     3          1                           1
## 798                     1          1                           1
## 799                     2          1                           2
## 800                     3          1                           3
## 801                     2          1                           2
## 802                     2          1                           4
## 803                     2          1                           4
## 804                     2          1                           2
## 805                     4          1                           2
## 806                     2          1                           4
## 807                     2          1                           3
## 808                     3          1                           4
## 809                     3          1                           2
## 810                     2          1                           4
## 811                     3          1                           2
## 812                     3          2                           4
## 813                     2          1                           4
## 814                     2          1                           2
## 815                     2          1                           4
## 816                     2          1                           1
## 817                     2          1                           4
## 818                     3          1                           2
## 819                     2          1                           4
## 820                     2          2                           2
## 821                     3          2                           2
## 822                     3          1                           3
## 823                     1          1                           3
## 824                     2          1                           2
## 825                     2          1                           2
## 826                     3          1                           4
## 827                     3          1                           4
## 828                     3          2                           4
## 829                     3          1                           2
## 830                     2          1                           2
## 831                     2          1                           1
## 832                     3          1                           2
## 833                     3          1                           4
## 834                     3          1                           2
## 835                     2          1                           4
## 836                     2          1                           4
## 837                     3          1                           2
## 838                     1          1                           3
## 839                     3          1                           4
## 840                     2          1                           2
## 841                     3          1                           4
## 842                     3          1                           2
## 843                     2          1                           4
## 844                     3          2                           3
## 845                     3          2                           3
## 846                     3          1                           2
## 847                     3          1                           3
## 848                     2          1                           4
## 849                     2          2                           4
## 850                     3          1                           4
## 851                     3          3                           4
## 852                     2          1                           4
## 853                     1          1                           4
## 854                     3          1                           2
## 855                     4          2                           1
## 856                     3          1                           4
## 857                     3          1                           4
## 858                     1          1                           4
## 859                     3          1                           3
## 860                     4          1                           3
## 861                     1          1                           2
## 862                     2          1                           4
## 863                     4          1                           1
## 864                     3          1                           2
## 865                     3          1                           3
## 866                     3          1                           4
## 867                     2          1                           1
## 868                     4          1                           4
## 869                     2          1                           4
## 870                     2          1                           4
## 871                     3          1                           4
## 872                     2          1                           2
## 873                     2          2                           4
## 874                     1          1                           1
## 875                     2          1                           4
## 876                     4          1                           2
## 877                     4          1                           2
## 878                     2          1                           2
## 879                     2          1                           4
## 880                     3          1                           3
## 881                     3          1                           1
## 882                     3          1                           2
## 883                     3          1                           4
## 884                     4          1                           2
## 885                     2          1                           4
## 886                     3          1                           2
## 887                     2          1                           1
## 888                     2          1                           2
## 889                     2          1                           4
## 890                     3          2                           1
## 891                     3          1                           2
## 892                     3          1                           4
## 893                     4          1                           1
## 894                     2          1                           2
## 895                     2          1                           2
## 896                     2          1                           4
## 897                     3          1                           2
## 898                     2          1                           3
## 899                     3          1                           2
## 900                     3          3                           4
## 901                     3          2                           3
## 902                     3          1                           1
## 903                     3          1                           4
## 904                     3          2                           3
## 905                     2          1                           4
## 906                     2          1                           4
## 907                     3          1                           3
## 908                     2          1                           4
## 909                     3          1                           2
## 910                     3          1                           4
## 911                     3          1                           4
## 912                     3          1                           3
## 913                     3          1                           2
## 914                     3          1                           4
## 915                     3          1                           4
## 916                     3          1                           2
## 917                     2          1                           4
## 918                     2          1                           3
## 919                     3          1                           4
## 920                     3          1                           4
## 921                     3          1                           4
## 922                     3          1                           2
## 923                     2          1                           4
## 924                     3          1                           4
## 925                     3          1                           1
## 926                     2          1                           4
## 927                     3          1                           2
## 928                     4          1                           4
## 929                     3          1                           4
## 930                     3          1                           2
## 931                     3          3                           3
## 932                     2          1                           1
## 933                     1          1                           1
## 934                     1          1                           3
## 935                     3          3                           4
## 936                     4          3                           2
## 937                     2          1                           2
## 938                     3          1                           4
## 939                     3          1                           2
## 940                     3          1                           4
## 941                     3          1                           2
## 942                     3          1                           4
## 943                     3          1                           4
## 944                     3          1                           4
## 945                     3          1                           4
## 946                     3          1                           2
## 947                     3          1                           2
## 948                     2          1                           1
## 949                     3          1                           4
## 950                     2          1                           3
## 951                     3          1                           2
## 952                     4          1                           2
## 953                     2          1                           4
## 954                     2          1                           4
## 955                     2          1                           1
## 956                     2          1                           4
## 957                     1          1                           2
## 958                     2          2                           4
## 959                     2          1                           4
## 960                     4          1                           2
## 961                     3          1                           4
## 962                     3          1                           1
## 963                     3          1                           4
## 964                     2          1                           4
## 965                     3          1                           3
## 966                     2          1                           2
## 967                     3          1                           2
## 968                     4          1                           3
## 969                     3          1                           4
## 970                     3          1                           2
## 971                     3          1                           2
## 972                     2          1                           4
## 973                     3          2                           2
## 974                     3          1                           4
## 975                     2          1                           4
## 976                     1          1                           1
## 977                     2          1                           2
## 978                     3          1                           4
## 979                     2          1                           2
## 980                     3          1                           4
## 981                     4          1                           1
## 982                     4          1                           2
## 983                     2          1                           3
## 984                     2          1                           4
## 985                     4          3                           1
## 986                     3          1                           2
## 987                     1          1                           4
## 988                     4          1                           1
## 989                     2          1                           2
## 990                     2          1                           4
## 991                     2          1                           1
## 992                     2          1                           2
## 993                     3          1                           4
## 994                     2          1                           4
## 995                     3          1                           2
## 996                     3          1                           4
## 997                     3          2                           1
## 998                     3          1                           4
## 999                     3          1                           1
## 1000                    3          1                           4
##      Most.valuable.available.asset Age..years. Concurrent.Credits
## 1                                2          21                  3
## 2                                1          36                  3
## 3                                1          23                  3
## 4                                1          39                  3
## 5                                2          38                  1
## 6                                1          48                  3
## 7                                1          39                  3
## 8                                1          40                  3
## 9                                3          65                  3
## 10                               4          23                  3
## 11                               1          36                  3
## 12                               3          24                  3
## 13                               3          31                  3
## 14                               4          31                  3
## 15                               3          23                  3
## 16                               1          44                  3
## 17                               1          40                  3
## 18                               1          25                  3
## 19                               1          36                  3
## 20                               2          39                  3
## 21                               1          37                  3
## 22                               1          49                  1
## 23                               4          33                  3
## 24                               2          26                  3
## 25                               1          44                  3
## 26                               2          51                  3
## 27                               2          24                  3
## 28                               1          37                  3
## 29                               4          29                  3
## 30                               4          56                  3
## 31                               2          47                  3
## 32                               3          37                  3
## 33                               3          34                  3
## 34                               3          28                  3
## 35                               1          36                  3
## 36                               4          39                  3
## 37                               1          38                  3
## 38                               4          26                  3
## 39                               2          31                  3
## 40                               3          41                  3
## 41                               1          23                  3
## 42                               1          58                  3
## 43                               1          36                  3
## 44                               4          34                  3
## 45                               4          61                  3
## 46                               3          23                  3
## 47                               1          25                  3
## 48                               1          30                  3
## 49                               1          33                  3
## 50                               1          26                  3
## 51                               1          49                  3
## 52                               1          23                  3
## 53                               1          30                  3
## 54                               1          49                  3
## 55                               3          41                  3
## 56                               1          58                  3
## 57                               1          63                  3
## 58                               1          27                  3
## 59                               2          41                  3
## 60                               1          36                  3
## 61                               1          44                  3
## 62                               4          29                  3
## 63                               1          47                  3
## 64                               3          45                  3
## 65                               1          43                  3
## 66                               2          27                  3
## 67                               3          52                  3
## 68                               3          28                  3
## 69                               3          22                  3
## 70                               4          60                  3
## 71                               3          32                  3
## 72                               3          58                  3
## 73                               3          39                  3
## 74                               3          31                  2
## 75                               3          37                  3
## 76                               3          24                  3
## 77                               3          36                  3
## 78                               1          60                  3
## 79                               3          30                  3
## 80                               3          35                  3
## 81                               3          37                  3
## 82                               3          51                  3
## 83                               3          30                  3
## 84                               3          36                  3
## 85                               2          63                  3
## 86                               2          31                  3
## 87                               3          35                  3
## 88                               1          34                  3
## 89                               1          39                  3
## 90                               3          42                  3
## 91                               3          27                  3
## 92                               3          25                  3
## 93                               3          28                  3
## 94                               1          59                  3
## 95                               4          41                  3
## 96                               1          32                  2
## 97                               1          23                  3
## 98                               1          30                  2
## 99                               1          25                  3
## 100                              1          41                  1
## 101                              1          40                  3
## 102                              2          22                  3
## 103                              2          34                  1
## 104                              2          54                  3
## 105                              3          33                  3
## 106                              1          31                  3
## 107                              1          29                  3
## 108                              1          39                  3
## 109                              3          38                  2
## 110                              3          61                  3
## 111                              2          29                  3
## 112                              2          49                  1
## 113                              3          36                  3
## 114                              1          26                  3
## 115                              3          35                  3
## 116                              1          28                  3
## 117                              3          35                  3
## 118                              3          28                  3
## 119                              3          52                  3
## 120                              4          32                  3
## 121                              4          30                  3
## 122                              2          35                  3
## 123                              3          30                  3
## 124                              3          43                  3
## 125                              2          47                  2
## 126                              4          47                  3
## 127                              1          24                  3
## 128                              3          32                  3
## 129                              2          30                  3
## 130                              1          36                  3
## 131                              1          26                  3
## 132                              1          43                  3
## 133                              1          41                  3
## 134                              1          26                  3
## 135                              3          64                  3
## 136                              1          33                  3
## 137                              1          54                  3
## 138                              3          32                  1
## 139                              2          39                  3
## 140                              3          31                  3
## 141                              1          45                  3
## 142                              1          64                  3
## 143                              3          42                  3
## 144                              3          31                  3
## 145                              3          25                  3
## 146                              1          46                  3
## 147                              4          49                  1
## 148                              2          49                  3
## 149                              3          36                  3
## 150                              2          48                  3
## 151                              1          42                  3
## 152                              3          29                  1
## 153                              4          35                  3
## 154                              3          38                  1
## 155                              3          26                  3
## 156                              1          35                  3
## 157                              3          23                  1
## 158                              3          38                  3
## 159                              4          59                  3
## 160                              3          28                  3
## 161                              2          35                  3
## 162                              1          36                  3
## 163                              2          25                  3
## 164                              4          28                  3
## 165                              2          23                  3
## 166                              3          48                  3
## 167                              3          25                  3
## 168                              1          74                  3
## 169                              3          24                  1
## 170                              3          28                  3
## 171                              3          24                  3
## 172                              1          24                  3
## 173                              1          23                  3
## 174                              3          32                  1
## 175                              3          31                  3
## 176                              3          36                  3
## 177                              2          27                  3
## 178                              2          44                  3
## 179                              3          34                  2
## 180                              3          37                  3
## 181                              1          23                  3
## 182                              2          30                  3
## 183                              3          25                  1
## 184                              3          33                  3
## 185                              3          27                  3
## 186                              3          31                  3
## 187                              3          50                  3
## 188                              3          31                  3
## 189                              3          32                  3
## 190                              3          28                  1
## 191                              3          29                  3
## 192                              3          27                  3
## 193                              3          24                  3
## 194                              2          54                  3
## 195                              3          25                  3
## 196                              3          35                  3
## 197                              4          45                  3
## 198                              4          28                  3
## 199                              4          35                  3
## 200                              1          27                  2
## 201                              3          30                  1
## 202                              1          40                  1
## 203                              3          49                  1
## 204                              2          30                  3
## 205                              1          24                  3
## 206                              1          33                  1
## 207                              1          20                  3
## 208                              2          23                  3
## 209                              4          36                  3
## 210                              3          35                  3
## 211                              1          29                  3
## 212                              1          22                  2
## 213                              1          22                  2
## 214                              1          74                  3
## 215                              1          35                  3
## 216                              2          37                  3
## 217                              1          31                  3
## 218                              1          27                  3
## 219                              1          35                  3
## 220                              2          45                  3
## 221                              4          36                  1
## 222                              2          49                  2
## 223                              3          35                  3
## 224                              3          27                  3
## 225                              3          28                  3
## 226                              1          43                  3
## 227                              3          35                  3
## 228                              3          27                  3
## 229                              1          36                  1
## 230                              3          30                  3
## 231                              1          36                  3
## 232                              3          39                  3
## 233                              3          45                  3
## 234                              2          40                  3
## 235                              3          25                  1
## 236                              3          55                  3
## 237                              1          50                  3
## 238                              1          64                  1
## 239                              1          23                  3
## 240                              3          24                  3
## 241                              2          47                  3
## 242                              2          42                  3
## 243                              2          24                  3
## 244                              2          32                  1
## 245                              2          45                  1
## 246                              3          23                  3
## 247                              3          24                  3
## 248                              2          35                  3
## 249                              1          25                  3
## 250                              3          26                  3
## 251                              3          43                  3
## 252                              1          44                  3
## 253                              3          38                  3
## 254                              3          28                  3
## 255                              3          38                  3
## 256                              2          26                  3
## 257                              2          27                  3
## 258                              1          23                  3
## 259                              1          52                  3
## 260                              1          74                  3
## 261                              2          27                  1
## 262                              3          35                  3
## 263                              2          23                  3
## 264                              3          20                  3
## 265                              3          34                  3
## 266                              3          40                  3
## 267                              1          37                  3
## 268                              2          36                  3
## 269                              2          22                  3
## 270                              3          34                  1
## 271                              2          50                  3
## 272                              3          40                  3
## 273                              1          23                  3
## 274                              2          53                  3
## 275                              3          35                  3
## 276                              1          35                  3
## 277                              3          54                  1
## 278                              2          27                  3
## 279                              3          28                  3
## 280                              1          49                  3
## 281                              2          29                  1
## 282                              3          46                  3
## 283                              3          20                  3
## 284                              2          47                  3
## 285                              3          29                  1
## 286                              1          54                  3
## 287                              3          52                  3
## 288                              1          32                  3
## 289                              4          51                  3
## 290                              1          33                  1
## 291                              2          37                  3
## 292                              3          20                  3
## 293                              1          34                  3
## 294                              3          31                  1
## 295                              2          30                  3
## 296                              2          30                  1
## 297                              2          22                  3
## 298                              1          34                  3
## 299                              1          19                  3
## 300                              1          34                  3
## 301                              3          45                  1
## 302                              3          25                  1
## 303                              3          26                  3
## 304                              1          33                  3
## 305                              1          28                  3
## 306                              1          41                  3
## 307                              1          36                  1
## 308                              1          26                  2
## 309                              2          28                  3
## 310                              2          39                  3
## 311                              1          65                  3
## 312                              3          38                  3
## 313                              1          41                  1
## 314                              2          26                  3
## 315                              1          41                  3
## 316                              4          45                  1
## 317                              3          40                  1
## 318                              3          24                  3
## 319                              2          31                  3
## 320                              4          35                  1
## 321                              4          40                  3
## 322                              1          28                  3
## 323                              1          28                  3
## 324                              1          27                  3
## 325                              1          31                  3
## 326                              1          37                  3
## 327                              1          35                  3
## 328                              1          46                  3
## 329                              2          32                  3
## 330                              3          33                  3
## 331                              3          33                  3
## 332                              3          26                  3
## 333                              3          24                  3
## 334                              2          25                  3
## 335                              3          54                  3
## 336                              2          24                  3
## 337                              1          48                  3
## 338                              2          49                  3
## 339                              1          32                  3
## 340                              2          55                  3
## 341                              3          40                  3
## 342                              3          22                  1
## 343                              4          38                  3
## 344                              1          26                  3
## 345                              3          51                  3
## 346                              2          38                  3
## 347                              4          46                  3
## 348                              4          63                  3
## 349                              2          30                  3
## 350                              3          32                  3
## 351                              3          26                  3
## 352                              3          34                  3
## 353                              3          46                  1
## 354                              1          29                  3
## 355                              4          42                  1
## 356                              4          42                  3
## 357                              4          63                  1
## 358                              1          32                  3
## 359                              3          23                  3
## 360                              3          59                  3
## 361                              1          61                  3
## 362                              3          22                  3
## 363                              2          27                  3
## 364                              1          26                  3
## 365                              4          37                  3
## 366                              2          34                  3
## 367                              3          57                  3
## 368                              1          31                  3
## 369                              3          28                  3
## 370                              1          24                  3
## 371                              3          21                  2
## 372                              3          34                  3
## 373                              4          29                  3
## 374                              1          27                  3
## 375                              1          34                  3
## 376                              3          27                  3
## 377                              1          28                  3
## 378                              3          30                  3
## 379                              1          22                  3
## 380                              2          36                  3
## 381                              3          22                  3
## 382                              3          26                  3
## 383                              4          63                  1
## 384                              1          22                  3
## 385                              1          36                  3
## 386                              1          24                  3
## 387                              2          30                  3
## 388                              2          43                  3
## 389                              3          37                  3
## 390                              1          26                  3
## 391                              3          33                  3
## 392                              4          66                  1
## 393                              2          50                  3
## 394                              4          35                  3
## 395                              3          25                  2
## 396                              1          25                  3
## 397                              3          33                  3
## 398                              1          30                  1
## 399                              1          41                  3
## 400                              3          32                  3
## 401                              2          32                  3
## 402                              1          39                  3
## 403                              2          23                  3
## 404                              2          26                  3
## 405                              3          32                  3
## 406                              4          40                  1
## 407                              3          30                  3
## 408                              1          27                  1
## 409                              1          36                  1
## 410                              2          29                  3
## 411                              1          64                  3
## 412                              1          32                  3
## 413                              3          35                  3
## 414                              3          44                  3
## 415                              2          42                  3
## 416                              3          29                  3
## 417                              1          57                  3
## 418                              1          27                  3
## 419                              2          29                  3
## 420                              3          44                  3
## 421                              1          28                  3
## 422                              3          40                  3
## 423                              3          68                  3
## 424                              4          52                  3
## 425                              3          46                  3
## 426                              1          52                  3
## 427                              4          32                  3
## 428                              3          34                  3
## 429                              2          23                  1
## 430                              1          33                  3
## 431                              3          26                  3
## 432                              4          55                  3
## 433                              3          27                  1
## 434                              1          28                  1
## 435                              4          57                  3
## 436                              4          36                  3
## 437                              3          31                  3
## 438                              1          24                  3
## 439                              3          43                  2
## 440                              3          40                  3
## 441                              2          23                  3
## 442                              3          26                  3
## 443                              2          30                  3
## 444                              1          40                  3
## 445                              1          56                  3
## 446                              1          50                  3
## 447                              4          36                  3
## 448                              3          21                  3
## 449                              4          32                  3
## 450                              1          66                  3
## 451                              1          66                  3
## 452                              3          39                  3
## 453                              4          70                  1
## 454                              4          24                  3
## 455                              4          22                  3
## 456                              1          27                  3
## 457                              3          29                  1
## 458                              2          35                  3
## 459                              2          29                  1
## 460                              3          26                  3
## 461                              1          60                  3
## 462                              2          40                  2
## 463                              3          23                  3
## 464                              3          45                  3
## 465                              1          24                  3
## 466                              1          55                  3
## 467                              3          30                  3
## 468                              4          35                  3
## 469                              3          24                  3
## 470                              2          47                  1
## 471                              4          47                  1
## 472                              3          25                  3
## 473                              2          37                  3
## 474                              1          33                  1
## 475                              3          31                  3
## 476                              3          27                  3
## 477                              2          47                  1
## 478                              3          25                  3
## 479                              4          57                  1
## 480                              3          67                  3
## 481                              2          48                  3
## 482                              1          40                  3
## 483                              4          32                  3
## 484                              2          49                  3
## 485                              2          35                  3
## 486                              1          27                  3
## 487                              3          35                  3
## 488                              2          37                  3
## 489                              1          26                  3
## 490                              2          45                  3
## 491                              1          33                  3
## 492                              2          42                  2
## 493                              2          31                  1
## 494                              1          46                  3
## 495                              1          54                  3
## 496                              2          26                  3
## 497                              1          29                  3
## 498                              2          43                  3
## 499                              2          38                  3
## 500                              1          35                  3
## 501                              1          28                  3
## 502                              2          27                  3
## 503                              2          51                  3
## 504                              1          33                  3
## 505                              3          38                  3
## 506                              1          30                  3
## 507                              1          38                  3
## 508                              2          46                  3
## 509                              3          33                  3
## 510                              2          43                  3
## 511                              3          24                  3
## 512                              4          56                  3
## 513                              3          37                  3
## 514                              2          22                  3
## 515                              3          20                  3
## 516                              3          29                  3
## 517                              3          36                  3
## 518                              4          37                  2
## 519                              3          44                  3
## 520                              2          23                  3
## 521                              3          28                  3
## 522                              3          26                  3
## 523                              1          29                  3
## 524                              1          21                  3
## 525                              3          34                  3
## 526                              3          31                  2
## 527                              1          40                  3
## 528                              1          27                  3
## 529                              4          32                  3
## 530                              3          25                  3
## 531                              1          42                  3
## 532                              3          43                  3
## 533                              3          44                  3
## 534                              2          32                  3
## 535                              3          27                  2
## 536                              3          20                  3
## 537                              1          37                  3
## 538                              1          42                  3
## 539                              2          46                  3
## 540                              3          33                  1
## 541                              3          22                  3
## 542                              3          41                  3
## 543                              2          37                  3
## 544                              2          27                  3
## 545                              1          42                  3
## 546                              1          26                  3
## 547                              3          26                  3
## 548                              2          27                  3
## 549                              1          22                  3
## 550                              3          37                  3
## 551                              2          30                  3
## 552                              1          49                  3
## 553                              1          27                  3
## 554                              2          40                  3
## 555                              1          20                  3
## 556                              3          26                  3
## 557                              3          30                  3
## 558                              2          33                  1
## 559                              2          26                  3
## 560                              1          35                  3
## 561                              1          44                  3
## 562                              3          27                  3
## 563                              2          24                  3
## 564                              4          47                  3
## 565                              2          26                  3
## 566                              2          23                  3
## 567                              2          31                  3
## 568                              3          52                  3
## 569                              1          43                  3
## 570                              3          37                  2
## 571                              1          26                  3
## 572                              4          35                  3
## 573                              3          30                  3
## 574                              3          34                  2
## 575                              3          35                  3
## 576                              3          48                  1
## 577                              3          42                  3
## 578                              3          40                  3
## 579                              3          23                  3
## 580                              3          30                  3
## 581                              3          24                  1
## 582                              2          33                  3
## 583                              3          31                  3
## 584                              2          22                  3
## 585                              4          53                  3
## 586                              4          34                  3
## 587                              4          36                  3
## 588                              2          37                  3
## 589                              1          25                  3
## 590                              1          34                  3
## 591                              1          27                  3
## 592                              4          51                  1
## 593                              4          23                  3
## 594                              4          29                  3
## 595                              1          32                  3
## 596                              2          28                  3
## 597                              2          38                  3
## 598                              1          65                  3
## 599                              2          39                  3
## 600                              2          29                  3
## 601                              2          26                  3
## 602                              2          30                  3
## 603                              2          75                  3
## 604                              2          21                  3
## 605                              2          41                  1
## 606                              2          25                  3
## 607                              2          35                  2
## 608                              2          37                  3
## 609                              2          26                  3
## 610                              4          30                  3
## 611                              2          23                  1
## 612                              3          42                  3
## 613                              2          30                  3
## 614                              2          46                  3
## 615                              4          29                  3
## 616                              2          29                  3
## 617                              4          38                  3
## 618                              3          30                  3
## 619                              2          31                  3
## 620                              1          47                  3
## 621                              4          48                  3
## 622                              4          27                  1
## 623                              4          66                  3
## 624                              2          29                  3
## 625                              4          75                  3
## 626                              4          36                  3
## 627                              4          38                  3
## 628                              3          46                  3
## 629                              2          36                  3
## 630                              4          55                  3
## 631                              2          25                  3
## 632                              2          45                  3
## 633                              2          28                  3
## 634                              2          30                  3
## 635                              4          39                  1
## 636                              4          22                  1
## 637                              2          60                  3
## 638                              2          28                  1
## 639                              2          24                  3
## 640                              2          63                  3
## 641                              2          46                  3
## 642                              2          33                  3
## 643                              4          44                  3
## 644                              4          58                  2
## 645                              4          54                  3
## 646                              3          43                  3
## 647                              2          52                  1
## 648                              3          32                  1
## 649                              2          41                  2
## 650                              3          34                  3
## 651                              2          48                  3
## 652                              2          38                  3
## 653                              2          38                  3
## 654                              2          53                  3
## 655                              4          38                  3
## 656                              2          42                  3
## 657                              4          38                  1
## 658                              1          64                  3
## 659                              1          35                  3
## 660                              1          26                  3
## 661                              1          33                  3
## 662                              1          29                  3
## 663                              1          20                  3
## 664                              3          28                  3
## 665                              1          47                  3
## 666                              1          49                  3
## 667                              1          45                  3
## 668                              1          23                  3
## 669                              1          25                  3
## 670                              1          34                  3
## 671                              2          23                  3
## 672                              1          32                  3
## 673                              1          26                  3
## 674                              1          44                  3
## 675                              1          26                  1
## 676                              3          28                  3
## 677                              1          25                  3
## 678                              1          48                  1
## 679                              1          35                  1
## 680                              1          28                  1
## 681                              1          23                  2
## 682                              1          40                  1
## 683                              2          36                  1
## 684                              1          50                  3
## 685                              2          24                  3
## 686                              2          40                  3
## 687                              3          31                  3
## 688                              4          29                  1
## 689                              2          45                  2
## 690                              3          32                  3
## 691                              1          21                  3
## 692                              1          27                  3
## 693                              2          22                  3
## 694                              2          46                  3
## 695                              1          24                  3
## 696                              3          21                  3
## 697                              3          36                  2
## 698                              2          28                  3
## 699                              3          27                  3
## 700                              2          57                  3
## 701                              4          47                  3
## 702                              3          34                  3
## 703                              3          23                  3
## 704                              2          57                  3
## 705                              1          67                  3
## 706                              2          36                  3
## 707                              4          20                  3
## 708                              1          36                  3
## 709                              3          37                  3
## 710                              4          31                  1
## 711                              4          62                  3
## 712                              3          65                  3
## 713                              1          36                  3
## 714                              2          41                  3
## 715                              2          26                  3
## 716                              3          27                  3
## 717                              4          50                  3
## 718                              2          54                  3
## 719                              1          27                  3
## 720                              3          24                  3
## 721                              4          50                  3
## 722                              3          40                  3
## 723                              1          28                  2
## 724                              3          31                  2
## 725                              3          27                  2
## 726                              3          21                  3
## 727                              3          31                  1
## 728                              3          39                  3
## 729                              3          30                  3
## 730                              4          27                  3
## 731                              4          55                  1
## 732                              4          34                  3
## 733                              4          23                  3
## 734                              3          23                  3
## 735                              4          42                  3
## 736                              1          62                  3
## 737                              3          37                  3
## 738                              1          46                  3
## 739                              3          38                  3
## 740                              3          31                  1
## 741                              1          31                  3
## 742                              1          61                  3
## 743                              3          20                  3
## 744                              3          63                  3
## 745                              2          24                  2
## 746                              2          21                  3
## 747                              4          36                  1
## 748                              4          44                  3
## 749                              2          67                  3
## 750                              4          51                  3
## 751                              4          30                  3
## 752                              3          28                  3
## 753                              4          32                  3
## 754                              3          28                  3
## 755                              2          23                  3
## 756                              3          33                  3
## 757                              3          60                  3
## 758                              3          48                  1
## 759                              4          24                  1
## 760                              3          27                  3
## 761                              1          28                  3
## 762                              4          65                  3
## 763                              2          29                  1
## 764                              4          42                  3
## 765                              3          47                  3
## 766                              3          22                  3
## 767                              1          25                  3
## 768                              2          32                  1
## 769                              4          29                  3
## 770                              3          24                  3
## 771                              3          30                  2
## 772                              4          27                  3
## 773                              1          47                  3
## 774                              3          24                  3
## 775                              3          24                  3
## 776                              3          34                  3
## 777                              4          40                  3
## 778                              1          44                  3
## 779                              3          33                  3
## 780                              2          40                  3
## 781                              2          49                  3
## 782                              1          48                  2
## 783                              4          57                  3
## 784                              2          24                  1
## 785                              4          29                  3
## 786                              3          35                  1
## 787                              2          32                  2
## 788                              2          61                  2
## 789                              1          36                  3
## 790                              3          25                  1
## 791                              1          26                  3
## 792                              1          25                  3
## 793                              2          55                  1
## 794                              2          53                  3
## 795                              1          66                  3
## 796                              4          61                  3
## 797                              1          34                  3
## 798                              3          33                  3
## 799                              3          29                  1
## 800                              4          38                  1
## 801                              2          35                  3
## 802                              4          32                  3
## 803                              1          25                  3
## 804                              2          33                  3
## 805                              3          23                  3
## 806                              2          24                  3
## 807                              3          28                  3
## 808                              4          63                  3
## 809                              2          39                  3
## 810                              4          35                  3
## 811                              3          23                  3
## 812                              4          36                  3
## 813                              1          23                  3
## 814                              1          24                  3
## 815                              4          74                  1
## 816                              1          22                  3
## 817                              4          48                  3
## 818                              1          26                  3
## 819                              1          24                  3
## 820                              3          19                  3
## 821                              4          27                  1
## 822                              2          29                  2
## 823                              2          32                  3
## 824                              1          25                  3
## 825                              3          29                  3
## 826                              2          47                  3
## 827                              4          34                  3
## 828                              2          43                  3
## 829                              3          30                  3
## 830                              1          22                  3
## 831                              3          42                  3
## 832                              3          26                  3
## 833                              3          27                  3
## 834                              3          26                  3
## 835                              2          32                  3
## 836                              3          23                  3
## 837                              3          36                  2
## 838                              3          43                  3
## 839                              4          39                  1
## 840                              2          26                  3
## 841                              4          40                  3
## 842                              1          31                  3
## 843                              3          29                  3
## 844                              3          29                  1
## 845                              3          39                  3
## 846                              2          23                  3
## 847                              4          30                  2
## 848                              4          60                  1
## 849                              4          50                  3
## 850                              4          47                  3
## 851                              2          21                  3
## 852                              1          24                  1
## 853                              1          31                  3
## 854                              1          37                  1
## 855                              2          43                  3
## 856                              4          46                  3
## 857                              4          30                  3
## 858                              3          31                  3
## 859                              3          34                  3
## 860                              4          33                  3
## 861                              1          38                  1
## 862                              2          24                  3
## 863                              1          23                  3
## 864                              2          31                  1
## 865                              4          27                  1
## 866                              4          39                  3
## 867                              3          25                  3
## 868                              3          28                  3
## 869                              3          27                  1
## 870                              3          25                  3
## 871                              3          54                  3
## 872                              1          25                  2
## 873                              1          22                  3
## 874                              3          28                  3
## 875                              4          34                  1
## 876                              3          28                  3
## 877                              3          28                  3
## 878                              3          31                  3
## 879                              2          22                  3
## 880                              3          40                  2
## 881                              3          25                  3
## 882                              3          34                  3
## 883                              4          42                  1
## 884                              2          25                  3
## 885                              3          28                  3
## 886                              2          24                  3
## 887                              2          27                  3
## 888                              4          25                  3
## 889                              1          35                  3
## 890                              4          29                  3
## 891                              4          27                  3
## 892                              3          24                  3
## 893                              1          25                  3
## 894                              3          33                  3
## 895                              2          34                  3
## 896                              4          38                  3
## 897                              1          41                  1
## 898                              1          21                  3
## 899                              3          36                  3
## 900                              2          27                  3
## 901                              2          31                  3
## 902                              1          33                  3
## 903                              4          57                  1
## 904                              3          42                  3
## 905                              2          26                  3
## 906                              1          24                  3
## 907                              3          44                  1
## 908                              1          23                  3
## 909                              1          43                  3
## 910                              4          53                  3
## 911                              4          53                  3
## 912                              2          35                  3
## 913                              2          26                  1
## 914                              3          31                  1
## 915                              4          23                  1
## 916                              3          22                  3
## 917                              3          20                  3
## 918                              2          25                  3
## 919                              4          24                  3
## 920                              4          46                  3
## 921                              3          27                  1
## 922                              3          46                  1
## 923                              3          23                  3
## 924                              2          50                  3
## 925                              2          26                  2
## 926                              1          20                  3
## 927                              2          31                  1
## 928                              2          21                  3
## 929                              4          39                  3
## 930                              3          25                  2
## 931                              1          30                  3
## 932                              1          37                  1
## 933                              1          46                  3
## 934                              3          36                  3
## 935                              2          43                  3
## 936                              2          33                  1
## 937                              3          29                  1
## 938                              3          36                  3
## 939                              1          23                  1
## 940                              3          42                  2
## 941                              4          44                  3
## 942                              3          41                  1
## 943                              3          41                  1
## 944                              4          37                  1
## 945                              1          57                  3
## 946                              2          34                  2
## 947                              1          25                  3
## 948                              1          53                  1
## 949                              4          32                  1
## 950                              2          33                  3
## 951                              2          24                  1
## 952                              1          28                  3
## 953                              2          39                  3
## 954                              3          24                  3
## 955                              1          26                  1
## 956                              4          55                  3
## 957                              3          61                  3
## 958                              3          21                  1
## 959                              3          26                  3
## 960                              3          22                  3
## 961                              3          68                  2
## 962                              3          22                  3
## 963                              4          58                  3
## 964                              1          23                  3
## 965                              3          37                  3
## 966                              3          26                  1
## 967                              3          27                  1
## 968                              1          26                  3
## 969                              4          23                  3
## 970                              2          40                  1
## 971                              3          33                  3
## 972                              4          42                  2
## 973                              1          37                  3
## 974                              3          29                  3
## 975                              2          23                  3
## 976                              4          34                  1
## 977                              2          32                  1
## 978                              4          68                  1
## 979                              2          25                  3
## 980                              4          35                  3
## 981                              2          22                  3
## 982                              3          28                  3
## 983                              3          30                  3
## 984                              3          25                  1
## 985                              1          34                  3
## 986                              3          42                  2
## 987                              2          45                  3
## 988                              2          20                  3
## 989                              3          23                  3
## 990                              2          20                  3
## 991                              1          27                  3
## 992                              4          44                  3
## 993                              2          51                  3
## 994                              1          33                  1
## 995                              2          28                  3
## 996                              1          21                  3
## 997                              1          45                  3
## 998                              4          30                  3
## 999                              4          52                  3
## 1000                             2          31                  3
##      Type.of.apartment No.of.Credits.at.this.Bank Occupation
## 1                    1                          1          3
## 2                    1                          2          3
## 3                    1                          1          2
## 4                    1                          2          2
## 5                    2                          2          2
## 6                    1                          2          2
## 7                    2                          2          2
## 8                    2                          1          2
## 9                    2                          2          1
## 10                   1                          1          1
## 11                   1                          2          3
## 12                   1                          2          3
## 13                   2                          1          3
## 14                   2                          1          4
## 15                   1                          2          2
## 16                   1                          1          3
## 17                   2                          2          2
## 18                   1                          1          3
## 19                   2                          1          3
## 20                   2                          2          2
## 21                   1                          3          3
## 22                   2                          2          2
## 23                   1                          1          2
## 24                   2                          1          3
## 25                   2                          2          2
## 26                   2                          1          3
## 27                   1                          1          3
## 28                   2                          3          2
## 29                   2                          1          3
## 30                   3                          1          3
## 31                   2                          1          3
## 32                   2                          2          3
## 33                   2                          2          4
## 34                   2                          1          3
## 35                   2                          1          3
## 36                   2                          2          3
## 37                   2                          2          2
## 38                   2                          2          3
## 39                   2                          1          3
## 40                   1                          2          4
## 41                   2                          2          3
## 42                   2                          1          2
## 43                   2                          2          3
## 44                   2                          2          3
## 45                   3                          1          3
## 46                   1                          1          3
## 47                   2                          1          3
## 48                   2                          2          3
## 49                   2                          1          3
## 50                   2                          2          3
## 51                   2                          1          2
## 52                   2                          1          3
## 53                   2                          2          3
## 54                   2                          1          3
## 55                   2                          1          4
## 56                   2                          4          2
## 57                   2                          2          2
## 58                   2                          1          3
## 59                   2                          1          3
## 60                   2                          1          3
## 61                   2                          1          3
## 62                   2                          1          4
## 63                   2                          1          3
## 64                   2                          2          3
## 65                   2                          2          2
## 66                   2                          2          3
## 67                   2                          1          3
## 68                   2                          1          3
## 69                   2                          1          3
## 70                   3                          2          3
## 71                   2                          2          3
## 72                   2                          1          3
## 73                   2                          1          3
## 74                   2                          1          3
## 75                   2                          1          4
## 76                   2                          1          3
## 77                   2                          1          4
## 78                   2                          1          3
## 79                   2                          2          3
## 80                   2                          1          3
## 81                   2                          1          3
## 82                   2                          1          3
## 83                   2                          2          3
## 84                   2                          1          3
## 85                   2                          1          3
## 86                   2                          1          3
## 87                   2                          2          3
## 88                   2                          2          3
## 89                   2                          2          2
## 90                   1                          2          3
## 91                   2                          1          3
## 92                   2                          1          3
## 93                   2                          2          3
## 94                   2                          1          3
## 95                   2                          1          3
## 96                   2                          2          2
## 97                   2                          1          2
## 98                   2                          2          4
## 99                   2                          1          3
## 100                  2                          2          2
## 101                  2                          1          3
## 102                  2                          1          2
## 103                  2                          2          4
## 104                  1                          1          3
## 105                  2                          2          3
## 106                  2                          1          3
## 107                  2                          2          4
## 108                  2                          1          3
## 109                  2                          1          3
## 110                  2                          1          3
## 111                  2                          1          3
## 112                  2                          1          3
## 113                  2                          1          4
## 114                  2                          1          3
## 115                  2                          1          3
## 116                  1                          1          2
## 117                  1                          1          3
## 118                  1                          1          3
## 119                  2                          2          3
## 120                  1                          1          3
## 121                  2                          1          4
## 122                  2                          2          3
## 123                  1                          1          4
## 124                  2                          1          2
## 125                  2                          1          3
## 126                  3                          3          3
## 127                  2                          1          3
## 128                  2                          1          3
## 129                  2                          1          4
## 130                  2                          1          3
## 131                  2                          1          3
## 132                  2                          1          3
## 133                  2                          1          3
## 134                  2                          1          3
## 135                  2                          1          3
## 136                  2                          1          3
## 137                  2                          1          3
## 138                  2                          1          3
## 139                  2                          2          2
## 140                  2                          2          3
## 141                  2                          1          2
## 142                  2                          1          2
## 143                  2                          1          3
## 144                  2                          1          4
## 145                  2                          1          3
## 146                  2                          1          4
## 147                  3                          1          3
## 148                  2                          1          2
## 149                  2                          1          3
## 150                  2                          2          2
## 151                  1                          2          3
## 152                  2                          1          3
## 153                  3                          2          3
## 154                  2                          2          3
## 155                  2                          1          3
## 156                  2                          2          2
## 157                  2                          1          3
## 158                  2                          1          3
## 159                  1                          1          3
## 160                  1                          3          3
## 161                  2                          2          3
## 162                  2                          2          3
## 163                  1                          1          3
## 164                  3                          1          3
## 165                  1                          1          3
## 166                  2                          3          3
## 167                  2                          2          3
## 168                  2                          1          4
## 169                  2                          2          3
## 170                  2                          2          3
## 171                  2                          1          3
## 172                  2                          1          2
## 173                  1                          1          3
## 174                  2                          1          3
## 175                  1                          2          4
## 176                  2                          1          4
## 177                  2                          2          2
## 178                  2                          1          3
## 179                  2                          2          3
## 180                  2                          1          4
## 181                  1                          1          3
## 182                  2                          2          3
## 183                  2                          3          3
## 184                  2                          1          3
## 185                  2                          2          3
## 186                  2                          2          3
## 187                  2                          1          3
## 188                  2                          1          3
## 189                  2                          2          3
## 190                  2                          1          4
## 191                  1                          1          4
## 192                  2                          1          3
## 193                  2                          1          3
## 194                  2                          1          3
## 195                  2                          1          3
## 196                  2                          2          4
## 197                  2                          2          4
## 198                  2                          2          3
## 199                  2                          1          3
## 200                  2                          1          3
## 201                  2                          1          4
## 202                  1                          2          3
## 203                  2                          1          2
## 204                  2                          1          3
## 205                  2                          1          2
## 206                  2                          1          4
## 207                  1                          1          4
## 208                  2                          1          3
## 209                  3                          1          4
## 210                  2                          1          3
## 211                  2                          1          2
## 212                  2                          1          3
## 213                  2                          1          3
## 214                  2                          3          1
## 215                  2                          1          1
## 216                  2                          1          2
## 217                  1                          1          3
## 218                  2                          1          1
## 219                  2                          1          2
## 220                  2                          1          2
## 221                  3                          1          4
## 222                  2                          2          2
## 223                  2                          2          2
## 224                  2                          2          3
## 225                  2                          1          3
## 226                  2                          2          2
## 227                  2                          1          2
## 228                  2                          2          2
## 229                  2                          1          2
## 230                  2                          1          3
## 231                  2                          1          4
## 232                  2                          1          2
## 233                  2                          1          4
## 234                  2                          1          4
## 235                  2                          1          2
## 236                  2                          1          3
## 237                  2                          2          3
## 238                  1                          1          2
## 239                  1                          1          2
## 240                  2                          1          3
## 241                  2                          2          2
## 242                  2                          1          4
## 243                  1                          1          2
## 244                  2                          2          4
## 245                  2                          1          2
## 246                  2                          1          3
## 247                  2                          2          3
## 248                  2                          2          3
## 249                  2                          1          2
## 250                  2                          1          3
## 251                  2                          1          3
## 252                  2                          1          2
## 253                  2                          1          3
## 254                  2                          1          3
## 255                  2                          2          4
## 256                  1                          1          3
## 257                  2                          2          2
## 258                  1                          2          3
## 259                  2                          1          2
## 260                  2                          1          2
## 261                  2                          2          2
## 262                  2                          2          4
## 263                  2                          1          3
## 264                  2                          1          3
## 265                  2                          1          3
## 266                  2                          1          3
## 267                  2                          1          2
## 268                  2                          1          3
## 269                  1                          2          2
## 270                  2                          1          2
## 271                  1                          1          3
## 272                  2                          2          3
## 273                  1                          1          2
## 274                  2                          1          3
## 275                  2                          1          4
## 276                  2                          1          2
## 277                  1                          1          4
## 278                  2                          2          3
## 279                  2                          1          3
## 280                  2                          1          3
## 281                  2                          1          3
## 282                  2                          1          2
## 283                  1                          1          3
## 284                  2                          2          3
## 285                  2                          1          3
## 286                  2                          1          1
## 287                  2                          2          3
## 288                  2                          1          3
## 289                  3                          1          2
## 290                  2                          2          3
## 291                  2                          2          2
## 292                  1                          1          3
## 293                  2                          2          2
## 294                  2                          2          3
## 295                  2                          2          3
## 296                  2                          1          3
## 297                  1                          1          3
## 298                  2                          2          2
## 299                  1                          1          2
## 300                  2                          2          3
## 301                  2                          1          2
## 302                  2                          1          3
## 303                  2                          1          3
## 304                  2                          2          3
## 305                  2                          1          2
## 306                  1                          1          2
## 307                  2                          1          2
## 308                  2                          1          2
## 309                  1                          1          4
## 310                  2                          1          2
## 311                  2                          4          3
## 312                  2                          2          3
## 313                  2                          2          2
## 314                  2                          1          3
## 315                  2                          1          2
## 316                  3                          1          3
## 317                  2                          1          3
## 318                  2                          1          3
## 319                  2                          2          3
## 320                  1                          1          3
## 321                  1                          1          2
## 322                  2                          1          3
## 323                  2                          1          3
## 324                  1                          2          3
## 325                  2                          1          2
## 326                  2                          2          3
## 327                  1                          1          2
## 328                  2                          2          3
## 329                  2                          1          3
## 330                  2                          2          3
## 331                  2                          2          3
## 332                  2                          2          3
## 333                  1                          2          3
## 334                  1                          1          3
## 335                  2                          2          3
## 336                  2                          1          2
## 337                  2                          2          3
## 338                  2                          2          3
## 339                  2                          1          3
## 340                  2                          1          3
## 341                  2                          2          3
## 342                  1                          1          3
## 343                  2                          1          4
## 344                  1                          1          3
## 345                  2                          2          3
## 346                  2                          1          3
## 347                  3                          1          3
## 348                  3                          2          3
## 349                  2                          2          3
## 350                  2                          2          3
## 351                  2                          2          3
## 352                  2                          1          3
## 353                  2                          2          4
## 354                  2                          2          3
## 355                  3                          1          3
## 356                  3                          2          3
## 357                  2                          1          3
## 358                  2                          2          2
## 359                  2                          1          4
## 360                  2                          1          3
## 361                  2                          2          2
## 362                  1                          1          3
## 363                  2                          2          3
## 364                  1                          1          3
## 365                  3                          1          3
## 366                  2                          2          3
## 367                  2                          1          2
## 368                  2                          1          2
## 369                  1                          1          3
## 370                  1                          1          2
## 371                  2                          1          2
## 372                  2                          1          3
## 373                  1                          1          3
## 374                  2                          1          3
## 375                  2                          2          4
## 376                  2                          1          4
## 377                  2                          2          3
## 378                  2                          2          4
## 379                  2                          1          3
## 380                  2                          2          3
## 381                  1                          1          3
## 382                  1                          1          2
## 383                  3                          1          4
## 384                  1                          1          2
## 385                  2                          2          3
## 386                  2                          1          3
## 387                  2                          1          3
## 388                  2                          1          2
## 389                  2                          1          3
## 390                  1                          1          3
## 391                  2                          1          3
## 392                  3                          3          1
## 393                  2                          1          2
## 394                  3                          2          3
## 395                  2                          1          3
## 396                  2                          1          3
## 397                  2                          1          3
## 398                  2                          2          3
## 399                  1                          1          3
## 400                  2                          1          3
## 401                  2                          1          3
## 402                  2                          1          2
## 403                  1                          1          1
## 404                  2                          1          3
## 405                  2                          1          3
## 406                  3                          1          1
## 407                  2                          1          3
## 408                  2                          1          3
## 409                  2                          1          3
## 410                  1                          1          3
## 411                  2                          1          3
## 412                  2                          2          3
## 413                  2                          2          3
## 414                  2                          2          3
## 415                  2                          2          3
## 416                  2                          2          3
## 417                  2                          3          2
## 418                  2                          2          3
## 419                  2                          2          3
## 420                  2                          2          3
## 421                  2                          1          3
## 422                  2                          2          3
## 423                  3                          3          1
## 424                  3                          1          4
## 425                  2                          2          3
## 426                  2                          3          3
## 427                  1                          1          3
## 428                  2                          2          4
## 429                  1                          1          3
## 430                  2                          1          2
## 431                  1                          1          4
## 432                  3                          2          3
## 433                  2                          1          3
## 434                  2                          2          3
## 435                  1                          1          2
## 436                  3                          1          3
## 437                  2                          1          3
## 438                  2                          1          3
## 439                  2                          4          4
## 440                  2                          3          1
## 441                  2                          1          3
## 442                  2                          2          3
## 443                  2                          2          4
## 444                  1                          1          3
## 445                  2                          1          3
## 446                  2                          1          3
## 447                  3                          2          3
## 448                  2                          1          3
## 449                  3                          1          4
## 450                  2                          1          2
## 451                  2                          1          2
## 452                  2                          1          3
## 453                  3                          1          4
## 454                  3                          2          3
## 455                  3                          1          3
## 456                  2                          1          2
## 457                  2                          2          3
## 458                  2                          1          2
## 459                  2                          1          2
## 460                  1                          1          3
## 461                  2                          1          4
## 462                  2                          2          4
## 463                  2                          1          3
## 464                  2                          1          2
## 465                  1                          1          1
## 466                  2                          1          4
## 467                  2                          1          3
## 468                  3                          1          3
## 469                  1                          1          3
## 470                  2                          3          3
## 471                  3                          2          3
## 472                  2                          2          3
## 473                  2                          2          3
## 474                  1                          1          2
## 475                  2                          1          3
## 476                  2                          2          2
## 477                  2                          3          3
## 478                  2                          2          3
## 479                  3                          3          2
## 480                  2                          1          3
## 481                  2                          4          3
## 482                  1                          1          3
## 483                  3                          1          3
## 484                  1                          1          3
## 485                  2                          1          3
## 486                  2                          2          3
## 487                  2                          2          4
## 488                  2                          1          3
## 489                  2                          1          3
## 490                  2                          1          4
## 491                  2                          1          3
## 492                  2                          1          3
## 493                  2                          1          3
## 494                  2                          2          3
## 495                  2                          1          3
## 496                  2                          1          3
## 497                  1                          1          3
## 498                  2                          2          3
## 499                  2                          1          1
## 500                  2                          1          3
## 501                  2                          1          3
## 502                  2                          2          3
## 503                  2                          1          3
## 504                  2                          2          3
## 505                  2                          1          4
## 506                  1                          2          3
## 507                  2                          2          3
## 508                  2                          2          4
## 509                  2                          1          3
## 510                  2                          1          3
## 511                  2                          1          3
## 512                  2                          1          3
## 513                  2                          1          3
## 514                  2                          1          3
## 515                  1                          1          3
## 516                  2                          1          3
## 517                  1                          1          4
## 518                  3                          1          3
## 519                  2                          2          3
## 520                  1                          2          3
## 521                  2                          1          4
## 522                  2                          2          4
## 523                  2                          1          3
## 524                  1                          1          3
## 525                  2                          2          4
## 526                  2                          2          3
## 527                  2                          1          2
## 528                  2                          1          3
## 529                  3                          1          4
## 530                  2                          2          3
## 531                  2                          2          2
## 532                  2                          2          3
## 533                  1                          1          2
## 534                  2                          2          4
## 535                  2                          1          3
## 536                  2                          1          3
## 537                  2                          1          3
## 538                  2                          3          2
## 539                  1                          2          2
## 540                  2                          2          3
## 541                  2                          1          3
## 542                  2                          2          3
## 543                  2                          1          2
## 544                  2                          2          3
## 545                  2                          3          2
## 546                  2                          1          3
## 547                  2                          1          3
## 548                  2                          2          3
## 549                  2                          1          3
## 550                  1                          1          3
## 551                  1                          1          3
## 552                  2                          1          2
## 553                  2                          2          3
## 554                  2                          1          3
## 555                  2                          1          3
## 556                  2                          2          3
## 557                  2                          2          3
## 558                  2                          1          4
## 559                  1                          1          4
## 560                  2                          1          3
## 561                  2                          2          3
## 562                  2                          2          3
## 563                  2                          1          4
## 564                  3                          1          3
## 565                  2                          2          2
## 566                  1                          2          3
## 567                  2                          2          2
## 568                  2                          2          2
## 569                  2                          3          3
## 570                  2                          1          3
## 571                  2                          1          3
## 572                  3                          1          2
## 573                  2                          2          3
## 574                  2                          1          3
## 575                  1                          1          4
## 576                  2                          1          4
## 577                  2                          1          3
## 578                  1                          1          2
## 579                  2                          2          3
## 580                  2                          1          4
## 581                  1                          1          2
## 582                  2                          1          3
## 583                  2                          2          3
## 584                  2                          1          3
## 585                  3                          1          4
## 586                  3                          1          4
## 587                  3                          3          4
## 588                  2                          1          3
## 589                  2                          1          3
## 590                  1                          1          4
## 591                  2                          1          3
## 592                  3                          2          4
## 593                  1                          2          2
## 594                  1                          2          1
## 595                  2                          2          3
## 596                  2                          2          3
## 597                  2                          1          2
## 598                  2                          2          3
## 599                  2                          1          3
## 600                  2                          1          3
## 601                  2                          1          3
## 602                  2                          2          2
## 603                  2                          1          4
## 604                  2                          1          2
## 605                  2                          1          3
## 606                  2                          2          3
## 607                  2                          2          4
## 608                  2                          2          3
## 609                  2                          1          3
## 610                  3                          1          3
## 611                  2                          1          2
## 612                  2                          1          3
## 613                  2                          1          3
## 614                  1                          1          3
## 615                  3                          1          4
## 616                  2                          1          3
## 617                  3                          3          4
## 618                  2                          1          4
## 619                  2                          1          2
## 620                  2                          2          2
## 621                  3                          1          3
## 622                  2                          2          4
## 623                  3                          2          4
## 624                  2                          1          2
## 625                  3                          2          4
## 626                  3                          3          4
## 627                  2                          1          4
## 628                  2                          2          3
## 629                  2                          1          4
## 630                  3                          1          4
## 631                  1                          2          3
## 632                  3                          1          3
## 633                  2                          1          3
## 634                  2                          1          4
## 635                  3                          1          4
## 636                  3                          1          3
## 637                  2                          2          3
## 638                  2                          2          2
## 639                  2                          2          3
## 640                  2                          2          3
## 641                  2                          2          3
## 642                  2                          2          3
## 643                  3                          2          4
## 644                  3                          2          2
## 645                  3                          2          3
## 646                  2                          1          4
## 647                  2                          2          3
## 648                  2                          2          3
## 649                  2                          2          3
## 650                  2                          1          3
## 651                  2                          1          2
## 652                  2                          1          3
## 653                  2                          2          3
## 654                  2                          2          3
## 655                  3                          1          3
## 656                  2                          2          3
## 657                  2                          2          3
## 658                  2                          1          3
## 659                  2                          1          3
## 660                  2                          1          2
## 661                  2                          1          3
## 662                  2                          2          3
## 663                  1                          2          3
## 664                  2                          1          3
## 665                  2                          2          2
## 666                  2                          2          3
## 667                  2                          1          3
## 668                  2                          2          3
## 669                  2                          1          2
## 670                  2                          1          3
## 671                  2                          1          2
## 672                  2                          1          2
## 673                  2                          1          2
## 674                  2                          1          2
## 675                  2                          1          2
## 676                  2                          2          3
## 677                  2                          2          2
## 678                  1                          2          2
## 679                  2                          3          3
## 680                  2                          1          2
## 681                  2                          1          2
## 682                  2                          2          2
## 683                  1                          2          4
## 684                  2                          2          3
## 685                  2                          1          2
## 686                  2                          2          3
## 687                  2                          1          2
## 688                  2                          1          1
## 689                  2                          1          2
## 690                  2                          1          2
## 691                  2                          1          3
## 692                  2                          1          2
## 693                  2                          1          2
## 694                  2                          2          2
## 695                  1                          1          2
## 696                  2                          2          3
## 697                  2                          2          3
## 698                  2                          1          3
## 699                  2                          1          3
## 700                  1                          2          4
## 701                  3                          1          3
## 702                  2                          2          3
## 703                  1                          2          3
## 704                  1                          2          3
## 705                  2                          2          3
## 706                  2                          2          3
## 707                  1                          2          3
## 708                  2                          2          3
## 709                  1                          1          3
## 710                  3                          1          3
## 711                  3                          1          3
## 712                  2                          2          1
## 713                  2                          2          3
## 714                  1                          2          2
## 715                  1                          1          3
## 716                  2                          2          3
## 717                  3                          1          4
## 718                  2                          3          4
## 719                  1                          1          3
## 720                  2                          1          3
## 721                  3                          1          3
## 722                  1                          1          4
## 723                  2                          2          2
## 724                  2                          1          4
## 725                  2                          1          3
## 726                  1                          1          3
## 727                  2                          1          4
## 728                  2                          1          4
## 729                  2                          1          4
## 730                  3                          1          4
## 731                  3                          1          4
## 732                  3                          1          3
## 733                  1                          2          3
## 734                  1                          1          3
## 735                  3                          1          3
## 736                  2                          1          3
## 737                  2                          2          2
## 738                  2                          2          3
## 739                  2                          2          2
## 740                  2                          2          3
## 741                  2                          1          2
## 742                  2                          1          2
## 743                  2                          1          3
## 744                  2                          2          3
## 745                  1                          1          2
## 746                  1                          1          3
## 747                  3                          1          3
## 748                  3                          2          3
## 749                  2                          2          4
## 750                  3                          1          3
## 751                  3                          1          3
## 752                  2                          1          2
## 753                  3                          2          3
## 754                  1                          1          3
## 755                  2                          1          1
## 756                  1                          2          3
## 757                  2                          2          2
## 758                  2                          2          3
## 759                  2                          1          3
## 760                  2                          2          3
## 761                  2                          2          3
## 762                  3                          2          3
## 763                  2                          2          3
## 764                  3                          1          3
## 765                  2                          2          2
## 766                  2                          1          3
## 767                  2                          2          3
## 768                  2                          2          3
## 769                  2                          1          3
## 770                  1                          1          3
## 771                  2                          1          4
## 772                  3                          1          4
## 773                  2                          1          2
## 774                  2                          1          3
## 775                  2                          2          3
## 776                  2                          1          3
## 777                  2                          1          4
## 778                  1                          1          4
## 779                  2                          1          3
## 780                  2                          1          4
## 781                  2                          1          3
## 782                  2                          1          3
## 783                  3                          1          4
## 784                  1                          1          3
## 785                  3                          1          3
## 786                  2                          2          3
## 787                  2                          1          2
## 788                  2                          2          3
## 789                  2                          3          2
## 790                  2                          1          2
## 791                  1                          2          1
## 792                  2                          1          2
## 793                  2                          1          3
## 794                  2                          1          3
## 795                  2                          1          4
## 796                  3                          1          4
## 797                  2                          1          2
## 798                  1                          1          3
## 799                  2                          1          3
## 800                  3                          1          3
## 801                  2                          1          3
## 802                  1                          1          3
## 803                  1                          1          3
## 804                  2                          1          3
## 805                  2                          1          3
## 806                  1                          1          3
## 807                  2                          2          3
## 808                  2                          2          3
## 809                  1                          1          4
## 810                  3                          1          3
## 811                  2                          1          3
## 812                  1                          1          3
## 813                  2                          1          3
## 814                  2                          1          3
## 815                  3                          1          4
## 816                  2                          1          3
## 817                  3                          1          2
## 818                  2                          1          3
## 819                  2                          1          3
## 820                  1                          2          3
## 821                  2                          2          3
## 822                  2                          1          3
## 823                  2                          1          3
## 824                  2                          2          3
## 825                  1                          1          2
## 826                  2                          1          4
## 827                  3                          1          2
## 828                  1                          2          3
## 829                  2                          1          3
## 830                  2                          1          3
## 831                  2                          1          3
## 832                  2                          2          4
## 833                  1                          2          3
## 834                  2                          1          3
## 835                  2                          1          3
## 836                  1                          2          4
## 837                  2                          2          3
## 838                  2                          1          3
## 839                  2                          2          4
## 840                  2                          1          3
## 841                  2                          1          4
## 842                  2                          2          2
## 843                  1                          1          2
## 844                  2                          2          4
## 845                  2                          2          4
## 846                  2                          2          2
## 847                  2                          2          4
## 848                  3                          2          4
## 849                  3                          1          3
## 850                  3                          1          3
## 851                  1                          1          3
## 852                  2                          1          2
## 853                  2                          2          3
## 854                  2                          2          2
## 855                  2                          1          2
## 856                  3                          1          3
## 857                  3                          1          3
## 858                  1                          1          3
## 859                  2                          1          3
## 860                  2                          1          2
## 861                  2                          1          3
## 862                  1                          1          3
## 863                  1                          1          3
## 864                  2                          2          3
## 865                  2                          1          3
## 866                  3                          2          3
## 867                  1                          1          3
## 868                  1                          1          4
## 869                  1                          4          3
## 870                  2                          1          2
## 871                  2                          1          3
## 872                  2                          2          3
## 873                  1                          1          3
## 874                  2                          2          3
## 875                  3                          1          2
## 876                  2                          2          4
## 877                  2                          2          4
## 878                  2                          1          3
## 879                  1                          1          3
## 880                  2                          1          4
## 881                  2                          1          1
## 882                  2                          2          4
## 883                  3                          1          4
## 884                  1                          1          3
## 885                  1                          2          3
## 886                  2                          1          3
## 887                  2                          1          3
## 888                  2                          2          4
## 889                  2                          1          3
## 890                  1                          1          4
## 891                  2                          1          4
## 892                  2                          2          3
## 893                  2                          1          3
## 894                  2                          1          3
## 895                  2                          1          4
## 896                  3                          1          4
## 897                  2                          1          2
## 898                  1                          1          3
## 899                  2                          1          3
## 900                  2                          1          2
## 901                  2                          1          3
## 902                  2                          1          2
## 903                  3                          2          3
## 904                  2                          1          3
## 905                  1                          1          3
## 906                  1                          2          3
## 907                  2                          1          3
## 908                  1                          1          3
## 909                  3                          2          3
## 910                  3                          2          3
## 911                  3                          2          3
## 912                  2                          2          3
## 913                  2                          2          3
## 914                  2                          1          3
## 915                  1                          2          3
## 916                  2                          1          3
## 917                  1                          1          3
## 918                  1                          2          3
## 919                  3                          2          3
## 920                  3                          2          3
## 921                  2                          1          3
## 922                  2                          2          3
## 923                  1                          2          3
## 924                  2                          2          3
## 925                  2                          2          3
## 926                  1                          1          3
## 927                  1                          1          3
## 928                  1                          1          3
## 929                  3                          3          3
## 930                  2                          1          3
## 931                  2                          2          3
## 932                  2                          1          2
## 933                  1                          2          3
## 934                  2                          1          3
## 935                  1                          1          3
## 936                  1                          2          3
## 937                  2                          1          3
## 938                  2                          1          3
## 939                  2                          1          2
## 940                  2                          4          4
## 941                  3                          1          3
## 942                  2                          1          2
## 943                  2                          1          2
## 944                  3                          1          3
## 945                  2                          1          2
## 946                  2                          1          4
## 947                  1                          1          2
## 948                  2                          1          4
## 949                  3                          2          2
## 950                  2                          1          2
## 951                  2                          2          2
## 952                  2                          3          3
## 953                  2                          1          3
## 954                  1                          2          2
## 955                  2                          1          1
## 956                  3                          3          1
## 957                  1                          2          2
## 958                  1                          1          3
## 959                  1                          2          2
## 960                  1                          1          3
## 961                  1                          2          3
## 962                  2                          1          3
## 963                  1                          1          3
## 964                  1                          1          2
## 965                  2                          1          3
## 966                  2                          1          3
## 967                  2                          2          3
## 968                  2                          1          3
## 969                  3                          1          3
## 970                  2                          2          2
## 971                  1                          1          4
## 972                  3                          2          4
## 973                  2                          1          3
## 974                  1                          2          3
## 975                  2                          1          3
## 976                  2                          1          2
## 977                  2                          1          4
## 978                  2                          1          4
## 979                  2                          1          3
## 980                  3                          1          3
## 981                  2                          1          3
## 982                  2                          1          3
## 983                  2                          1          4
## 984                  1                          2          3
## 985                  2                          2          3
## 986                  2                          2          4
## 987                  2                          1          4
## 988                  2                          1          3
## 989                  2                          1          2
## 990                  1                          1          2
## 991                  2                          1          1
## 992                  3                          1          4
## 993                  3                          1          3
## 994                  1                          3          3
## 995                  1                          2          3
## 996                  1                          1          2
## 997                  2                          1          3
## 998                  3                          1          4
## 999                  2                          1          4
## 1000                 2                          1          3
##      No.of.dependents Telephone Foreign.Worker
## 1                   1         1              1
## 2                   2         1              1
## 3                   1         1              1
## 4                   2         1              2
## 5                   1         1              2
## 6                   2         1              2
## 7                   1         1              2
## 8                   2         1              2
## 9                   1         1              1
## 10                  1         1              1
## 11                  2         1              1
## 12                  1         1              1
## 13                  1         1              1
## 14                  1         2              1
## 15                  1         1              1
## 16                  2         1              1
## 17                  2         1              1
## 18                  1         1              1
## 19                  1         1              1
## 20                  1         1              1
## 21                  2         1              1
## 22                  2         1              1
## 23                  1         1              1
## 24                  1         1              1
## 25                  2         1              1
## 26                  1         1              1
## 27                  1         1              1
## 28                  1         1              1
## 29                  1         1              1
## 30                  1         1              1
## 31                  1         1              1
## 32                  1         2              1
## 33                  1         2              1
## 34                  1         1              1
## 35                  1         1              1
## 36                  1         2              1
## 37                  2         1              1
## 38                  1         1              1
## 39                  1         2              1
## 40                  1         2              1
## 41                  1         1              1
## 42                  1         2              1
## 43                  1         1              1
## 44                  2         2              1
## 45                  1         1              1
## 46                  1         2              1
## 47                  1         2              1
## 48                  1         1              1
## 49                  1         2              1
## 50                  1         2              1
## 51                  1         1              1
## 52                  1         2              1
## 53                  1         1              1
## 54                  1         2              1
## 55                  2         2              1
## 56                  1         2              1
## 57                  1         2              1
## 58                  1         1              2
## 59                  1         2              1
## 60                  1         1              1
## 61                  1         2              1
## 62                  1         2              1
## 63                  1         2              1
## 64                  2         2              1
## 65                  2         1              1
## 66                  1         1              1
## 67                  1         2              1
## 68                  1         2              1
## 69                  1         2              1
## 70                  1         2              1
## 71                  1         2              1
## 72                  1         2              1
## 73                  1         1              1
## 74                  1         2              1
## 75                  1         1              1
## 76                  1         2              1
## 77                  1         2              1
## 78                  1         2              1
## 79                  1         2              1
## 80                  1         1              1
## 81                  1         2              1
## 82                  1         2              1
## 83                  1         2              1
## 84                  1         2              1
## 85                  1         1              1
## 86                  2         1              1
## 87                  1         2              1
## 88                  1         1              1
## 89                  1         2              1
## 90                  1         2              1
## 91                  1         1              1
## 92                  1         1              1
## 93                  1         1              1
## 94                  1         1              1
## 95                  1         2              1
## 96                  2         2              1
## 97                  1         1              1
## 98                  1         2              1
## 99                  1         1              1
## 100                 1         1              1
## 101                 1         2              1
## 102                 1         1              1
## 103                 1         2              1
## 104                 1         1              1
## 105                 1         2              1
## 106                 1         2              1
## 107                 1         2              1
## 108                 1         2              1
## 109                 1         2              1
## 110                 1         1              1
## 111                 1         2              1
## 112                 1         2              1
## 113                 1         2              1
## 114                 1         2              1
## 115                 1         2              1
## 116                 1         1              1
## 117                 1         2              1
## 118                 1         2              1
## 119                 1         2              1
## 120                 1         2              1
## 121                 1         2              1
## 122                 2         2              1
## 123                 1         2              1
## 124                 1         1              1
## 125                 1         2              1
## 126                 1         2              1
## 127                 1         1              1
## 128                 1         2              1
## 129                 1         2              1
## 130                 2         2              1
## 131                 1         1              1
## 132                 1         2              1
## 133                 1         2              1
## 134                 1         1              1
## 135                 1         2              1
## 136                 1         1              1
## 137                 1         2              1
## 138                 1         1              1
## 139                 1         1              1
## 140                 1         2              1
## 141                 1         2              1
## 142                 1         1              1
## 143                 1         2              1
## 144                 1         1              1
## 145                 1         1              1
## 146                 1         2              1
## 147                 2         2              1
## 148                 1         2              1
## 149                 1         2              1
## 150                 1         1              1
## 151                 1         1              1
## 152                 1         1              1
## 153                 1         2              1
## 154                 1         2              1
## 155                 1         2              1
## 156                 1         1              1
## 157                 1         1              1
## 158                 1         1              1
## 159                 1         1              1
## 160                 1         2              1
## 161                 1         1              1
## 162                 1         2              1
## 163                 1         2              1
## 164                 1         2              1
## 165                 1         2              1
## 166                 1         2              1
## 167                 1         1              1
## 168                 1         2              1
## 169                 1         1              1
## 170                 1         2              1
## 171                 1         1              1
## 172                 1         1              1
## 173                 1         1              1
## 174                 2         1              1
## 175                 2         2              1
## 176                 1         2              1
## 177                 1         2              1
## 178                 1         1              1
## 179                 1         2              1
## 180                 1         2              1
## 181                 1         2              1
## 182                 1         1              1
## 183                 1         1              1
## 184                 1         2              1
## 185                 1         1              1
## 186                 1         2              1
## 187                 1         2              1
## 188                 2         2              1
## 189                 2         1              1
## 190                 1         2              1
## 191                 1         2              1
## 192                 1         1              1
## 193                 1         1              1
## 194                 1         1              1
## 195                 1         1              1
## 196                 1         2              1
## 197                 2         2              1
## 198                 1         1              1
## 199                 1         1              1
## 200                 1         1              1
## 201                 1         1              1
## 202                 2         2              1
## 203                 1         1              1
## 204                 1         2              2
## 205                 1         1              2
## 206                 1         2              1
## 207                 2         2              1
## 208                 1         1              1
## 209                 1         2              1
## 210                 1         2              1
## 211                 2         1              2
## 212                 1         2              1
## 213                 1         2              1
## 214                 2         1              2
## 215                 1         1              1
## 216                 2         1              1
## 217                 1         1              1
## 218                 1         1              2
## 219                 1         2              1
## 220                 1         1              2
## 221                 1         2              1
## 222                 1         1              1
## 223                 1         2              1
## 224                 1         1              1
## 225                 1         1              1
## 226                 1         1              1
## 227                 2         2              1
## 228                 1         1              1
## 229                 1         1              1
## 230                 1         1              1
## 231                 1         2              1
## 232                 1         1              1
## 233                 1         2              1
## 234                 1         2              1
## 235                 1         1              1
## 236                 1         1              1
## 237                 1         1              1
## 238                 1         1              1
## 239                 2         1              1
## 240                 1         1              1
## 241                 1         1              1
## 242                 1         2              1
## 243                 1         1              1
## 244                 1         2              1
## 245                 2         1              1
## 246                 1         1              1
## 247                 1         1              1
## 248                 1         1              1
## 249                 1         1              1
## 250                 1         1              1
## 251                 2         1              1
## 252                 2         2              1
## 253                 1         1              1
## 254                 1         1              1
## 255                 1         2              1
## 256                 1         2              1
## 257                 1         1              1
## 258                 1         1              1
## 259                 1         1              1
## 260                 1         1              1
## 261                 1         1              1
## 262                 1         1              1
## 263                 1         1              1
## 264                 1         1              1
## 265                 2         1              1
## 266                 1         1              1
## 267                 2         1              1
## 268                 1         1              1
## 269                 1         1              1
## 270                 2         1              1
## 271                 1         1              1
## 272                 1         2              1
## 273                 1         1              1
## 274                 1         1              1
## 275                 1         2              1
## 276                 2         1              1
## 277                 1         2              1
## 278                 1         1              1
## 279                 1         1              1
## 280                 1         1              1
## 281                 1         1              1
## 282                 1         1              1
## 283                 1         1              1
## 284                 1         1              1
## 285                 1         1              1
## 286                 1         2              1
## 287                 1         1              1
## 288                 2         1              1
## 289                 1         1              1
## 290                 1         1              1
## 291                 2         1              1
## 292                 1         1              1
## 293                 2         1              1
## 294                 2         1              1
## 295                 1         1              1
## 296                 1         1              1
## 297                 1         1              1
## 298                 1         1              1
## 299                 1         1              1
## 300                 1         1              1
## 301                 1         1              1
## 302                 1         1              1
## 303                 1         1              1
## 304                 2         1              1
## 305                 1         1              1
## 306                 1         1              1
## 307                 1         2              1
## 308                 2         1              1
## 309                 1         2              1
## 310                 2         1              1
## 311                 1         1              1
## 312                 2         2              1
## 313                 1         1              1
## 314                 1         1              1
## 315                 2         2              1
## 316                 2         1              1
## 317                 1         2              1
## 318                 1         1              1
## 319                 1         1              1
## 320                 1         1              2
## 321                 2         1              2
## 322                 1         1              1
## 323                 1         2              1
## 324                 1         1              2
## 325                 2         1              2
## 326                 1         2              1
## 327                 1         1              2
## 328                 2         1              2
## 329                 1         1              2
## 330                 1         2              1
## 331                 1         2              1
## 332                 1         1              1
## 333                 1         2              1
## 334                 1         1              1
## 335                 1         2              1
## 336                 1         1              2
## 337                 2         1              2
## 338                 1         2              1
## 339                 2         1              1
## 340                 1         1              2
## 341                 2         2              1
## 342                 1         1              2
## 343                 1         2              1
## 344                 2         1              2
## 345                 1         2              1
## 346                 1         2              2
## 347                 1         2              1
## 348                 1         2              1
## 349                 1         1              1
## 350                 1         1              1
## 351                 1         1              2
## 352                 2         2              1
## 353                 2         1              1
## 354                 1         1              1
## 355                 2         2              1
## 356                 1         1              1
## 357                 2         2              1
## 358                 2         1              2
## 359                 1         1              1
## 360                 1         2              1
## 361                 1         1              1
## 362                 1         1              1
## 363                 1         1              1
## 364                 1         1              1
## 365                 1         2              1
## 366                 1         1              1
## 367                 1         1              1
## 368                 1         2              1
## 369                 1         1              1
## 370                 1         1              1
## 371                 1         1              1
## 372                 1         1              1
## 373                 1         1              1
## 374                 1         1              1
## 375                 1         1              1
## 376                 1         1              1
## 377                 1         1              1
## 378                 1         2              1
## 379                 1         1              1
## 380                 1         1              1
## 381                 1         1              1
## 382                 1         1              1
## 383                 1         2              1
## 384                 1         1              1
## 385                 1         2              1
## 386                 1         1              1
## 387                 1         1              1
## 388                 2         1              1
## 389                 1         2              1
## 390                 1         1              1
## 391                 1         1              1
## 392                 1         1              1
## 393                 1         1              1
## 394                 1         2              1
## 395                 1         1              1
## 396                 1         1              1
## 397                 1         1              1
## 398                 1         1              1
## 399                 1         1              1
## 400                 1         1              1
## 401                 2         2              1
## 402                 1         1              1
## 403                 1         2              1
## 404                 1         2              1
## 405                 1         2              1
## 406                 1         2              1
## 407                 1         2              1
## 408                 1         2              1
## 409                 1         2              1
## 410                 1         2              1
## 411                 1         1              1
## 412                 2         2              1
## 413                 1         1              1
## 414                 2         2              1
## 415                 2         2              1
## 416                 1         1              1
## 417                 1         1              1
## 418                 1         1              1
## 419                 1         2              1
## 420                 2         2              1
## 421                 1         1              1
## 422                 1         1              1
## 423                 1         2              1
## 424                 1         2              1
## 425                 1         2              1
## 426                 1         1              1
## 427                 1         2              1
## 428                 1         2              1
## 429                 1         2              1
## 430                 1         1              1
## 431                 1         2              1
## 432                 2         1              1
## 433                 1         1              1
## 434                 1         1              1
## 435                 1         1              1
## 436                 1         1              1
## 437                 1         1              1
## 438                 1         1              1
## 439                 2         2              1
## 440                 2         2              1
## 441                 1         2              1
## 442                 1         1              1
## 443                 1         2              1
## 444                 1         2              1
## 445                 1         1              1
## 446                 1         1              1
## 447                 1         1              1
## 448                 1         1              1
## 449                 1         2              1
## 450                 1         1              1
## 451                 1         1              1
## 452                 1         2              1
## 453                 1         2              1
## 454                 1         2              1
## 455                 1         1              1
## 456                 1         1              1
## 457                 1         2              1
## 458                 1         2              1
## 459                 1         1              1
## 460                 1         2              1
## 461                 1         2              1
## 462                 1         2              1
## 463                 1         2              1
## 464                 1         1              1
## 465                 1         1              1
## 466                 1         2              1
## 467                 1         1              1
## 468                 1         1              1
## 469                 1         1              1
## 470                 2         2              1
## 471                 1         1              1
## 472                 1         1              1
## 473                 1         1              1
## 474                 1         1              1
## 475                 1         1              1
## 476                 1         1              1
## 477                 2         2              1
## 478                 1         1              1
## 479                 1         1              1
## 480                 1         2              1
## 481                 2         2              1
## 482                 1         1              1
## 483                 1         1              1
## 484                 1         2              2
## 485                 1         1              1
## 486                 1         1              1
## 487                 1         2              1
## 488                 1         2              2
## 489                 1         2              1
## 490                 2         2              1
## 491                 1         1              1
## 492                 1         1              1
## 493                 1         2              1
## 494                 1         1              1
## 495                 1         1              1
## 496                 1         2              1
## 497                 1         1              1
## 498                 1         2              1
## 499                 1         1              1
## 500                 1         1              1
## 501                 1         1              1
## 502                 1         2              1
## 503                 2         1              1
## 504                 1         2              1
## 505                 1         2              1
## 506                 1         1              1
## 507                 1         2              1
## 508                 2         2              1
## 509                 1         2              1
## 510                 1         2              1
## 511                 1         1              1
## 512                 1         1              1
## 513                 1         2              1
## 514                 1         1              1
## 515                 1         1              1
## 516                 1         1              1
## 517                 1         2              1
## 518                 1         2              1
## 519                 1         2              1
## 520                 1         2              1
## 521                 1         2              1
## 522                 1         2              1
## 523                 1         1              1
## 524                 1         2              1
## 525                 1         2              1
## 526                 1         1              1
## 527                 1         1              1
## 528                 1         1              1
## 529                 1         2              1
## 530                 1         1              1
## 531                 2         1              1
## 532                 2         2              1
## 533                 1         2              1
## 534                 1         2              1
## 535                 1         1              1
## 536                 1         2              1
## 537                 2         1              1
## 538                 2         1              1
## 539                 1         2              1
## 540                 1         2              1
## 541                 1         2              1
## 542                 2         2              1
## 543                 1         1              1
## 544                 1         1              1
## 545                 2         1              1
## 546                 1         2              1
## 547                 1         1              1
## 548                 1         2              1
## 549                 1         1              1
## 550                 1         2              1
## 551                 2         2              1
## 552                 2         1              1
## 553                 1         2              1
## 554                 1         2              1
## 555                 1         1              1
## 556                 1         2              1
## 557                 1         1              1
## 558                 1         2              1
## 559                 1         2              1
## 560                 1         2              1
## 561                 1         2              1
## 562                 1         1              1
## 563                 1         1              1
## 564                 1         2              1
## 565                 1         1              1
## 566                 1         2              1
## 567                 2         2              1
## 568                 1         1              1
## 569                 1         2              1
## 570                 1         2              1
## 571                 1         1              1
## 572                 2         2              1
## 573                 1         1              1
## 574                 2         2              1
## 575                 1         2              1
## 576                 1         2              1
## 577                 2         1              1
## 578                 2         1              1
## 579                 1         1              1
## 580                 1         2              1
## 581                 1         1              1
## 582                 1         1              1
## 583                 1         1              1
## 584                 1         1              1
## 585                 1         2              1
## 586                 1         2              1
## 587                 1         2              1
## 588                 2         1              1
## 589                 1         1              1
## 590                 1         1              1
## 591                 1         1              1
## 592                 2         2              1
## 593                 1         2              1
## 594                 1         1              1
## 595                 1         1              1
## 596                 1         1              1
## 597                 2         1              1
## 598                 1         1              1
## 599                 2         1              1
## 600                 1         1              1
## 601                 2         1              1
## 602                 1         1              1
## 603                 1         2              1
## 604                 1         1              1
## 605                 2         1              1
## 606                 1         1              1
## 607                 1         2              2
## 608                 1         1              1
## 609                 2         1              1
## 610                 1         1              1
## 611                 1         1              1
## 612                 1         1              1
## 613                 1         1              1
## 614                 1         1              1
## 615                 1         2              1
## 616                 1         2              1
## 617                 2         2              1
## 618                 2         2              1
## 619                 1         1              1
## 620                 2         1              1
## 621                 1         2              1
## 622                 1         2              1
## 623                 1         1              1
## 624                 2         1              1
## 625                 1         2              1
## 626                 1         2              1
## 627                 1         2              1
## 628                 1         1              1
## 629                 2         2              1
## 630                 1         1              1
## 631                 1         1              1
## 632                 2         1              1
## 633                 1         1              1
## 634                 1         2              1
## 635                 2         2              1
## 636                 1         1              1
## 637                 1         1              1
## 638                 1         1              1
## 639                 1         1              1
## 640                 1         2              1
## 641                 1         2              1
## 642                 1         1              1
## 643                 2         2              1
## 644                 1         1              1
## 645                 2         1              1
## 646                 1         1              1
## 647                 1         1              1
## 648                 2         1              1
## 649                 1         1              1
## 650                 1         1              1
## 651                 1         2              1
## 652                 1         1              1
## 653                 1         1              1
## 654                 1         1              1
## 655                 2         2              1
## 656                 1         1              1
## 657                 2         1              1
## 658                 1         1              1
## 659                 1         1              2
## 660                 1         1              2
## 661                 1         1              2
## 662                 1         1              1
## 663                 1         1              1
## 664                 2         1              1
## 665                 1         1              1
## 666                 1         2              1
## 667                 1         1              1
## 668                 1         1              1
## 669                 1         1              1
## 670                 1         1              1
## 671                 1         1              1
## 672                 1         1              1
## 673                 2         1              1
## 674                 1         1              1
## 675                 1         1              1
## 676                 2         2              1
## 677                 1         1              1
## 678                 1         2              1
## 679                 1         2              1
## 680                 1         1              1
## 681                 1         1              1
## 682                 1         1              1
## 683                 2         2              1
## 684                 1         2              1
## 685                 1         1              1
## 686                 1         1              1
## 687                 1         1              1
## 688                 1         1              1
## 689                 1         1              1
## 690                 1         1              1
## 691                 1         2              1
## 692                 1         1              1
## 693                 1         1              1
## 694                 1         1              1
## 695                 1         1              1
## 696                 1         2              1
## 697                 1         2              1
## 698                 1         1              1
## 699                 1         1              1
## 700                 1         2              1
## 701                 1         1              1
## 702                 1         2              1
## 703                 1         2              1
## 704                 1         2              1
## 705                 1         2              1
## 706                 1         2              1
## 707                 1         1              1
## 708                 1         1              1
## 709                 1         1              1
## 710                 1         2              1
## 711                 1         2              1
## 712                 1         1              1
## 713                 1         1              1
## 714                 1         1              1
## 715                 1         1              1
## 716                 1         1              1
## 717                 1         2              1
## 718                 1         2              1
## 719                 1         1              1
## 720                 1         1              1
## 721                 1         1              1
## 722                 1         2              1
## 723                 1         1              1
## 724                 2         2              1
## 725                 1         1              1
## 726                 1         2              1
## 727                 1         1              1
## 728                 1         2              1
## 729                 1         2              1
## 730                 1         1              1
## 731                 1         2              1
## 732                 2         2              1
## 733                 1         2              1
## 734                 1         1              1
## 735                 2         1              1
## 736                 1         1              1
## 737                 1         1              1
## 738                 1         1              1
## 739                 1         1              1
## 740                 1         2              1
## 741                 1         1              1
## 742                 1         1              1
## 743                 1         1              1
## 744                 1         1              1
## 745                 1         1              1
## 746                 1         1              1
## 747                 1         2              1
## 748                 1         1              1
## 749                 1         2              1
## 750                 1         1              1
## 751                 1         1              1
## 752                 1         1              1
## 753                 2         1              1
## 754                 1         1              1
## 755                 1         2              1
## 756                 2         1              1
## 757                 1         1              1
## 758                 1         1              1
## 759                 1         1              1
## 760                 1         1              1
## 761                 1         1              1
## 762                 1         1              1
## 763                 1         2              1
## 764                 1         1              1
## 765                 2         1              1
## 766                 1         1              1
## 767                 1         1              1
## 768                 1         1              1
## 769                 1         1              1
## 770                 1         1              1
## 771                 2         1              1
## 772                 1         2              1
## 773                 1         2              1
## 774                 1         2              1
## 775                 1         2              1
## 776                 1         2              1
## 777                 1         2              1
## 778                 1         2              1
## 779                 1         1              1
## 780                 1         2              1
## 781                 1         1              1
## 782                 1         1              1
## 783                 1         2              1
## 784                 2         1              1
## 785                 1         1              1
## 786                 1         2              1
## 787                 1         1              1
## 788                 1         1              1
## 789                 1         2              1
## 790                 1         1              1
## 791                 1         1              1
## 792                 1         1              1
## 793                 1         2              1
## 794                 1         1              1
## 795                 1         2              1
## 796                 1         2              1
## 797                 2         1              1
## 798                 1         1              1
## 799                 1         1              1
## 800                 2         1              1
## 801                 1         1              1
## 802                 1         1              1
## 803                 1         1              1
## 804                 1         1              1
## 805                 1         1              1
## 806                 1         1              1
## 807                 1         1              1
## 808                 1         2              1
## 809                 1         2              1
## 810                 1         1              1
## 811                 1         2              1
## 812                 1         1              1
## 813                 1         1              1
## 814                 1         1              1
## 815                 2         2              1
## 816                 1         1              1
## 817                 2         1              1
## 818                 1         1              1
## 819                 1         1              1
## 820                 1         1              1
## 821                 1         2              1
## 822                 1         2              1
## 823                 1         1              1
## 824                 1         2              1
## 825                 1         2              1
## 826                 1         2              1
## 827                 2         1              1
## 828                 1         2              1
## 829                 1         1              1
## 830                 1         1              1
## 831                 1         2              1
## 832                 1         2              1
## 833                 1         2              1
## 834                 1         1              1
## 835                 1         1              1
## 836                 1         1              1
## 837                 2         1              1
## 838                 1         2              1
## 839                 2         2              1
## 840                 1         1              1
## 841                 1         2              1
## 842                 1         1              1
## 843                 1         1              1
## 844                 1         2              1
## 845                 2         2              1
## 846                 1         1              1
## 847                 1         1              1
## 848                 1         2              1
## 849                 1         1              1
## 850                 2         2              1
## 851                 1         1              1
## 852                 1         1              1
## 853                 1         2              1
## 854                 2         1              1
## 855                 2         1              1
## 856                 2         1              1
## 857                 2         2              1
## 858                 1         1              1
## 859                 1         1              1
## 860                 1         2              1
## 861                 1         1              1
## 862                 1         1              1
## 863                 1         1              1
## 864                 1         1              1
## 865                 1         2              1
## 866                 1         2              1
## 867                 1         1              1
## 868                 1         2              1
## 869                 1         1              1
## 870                 1         2              1
## 871                 1         1              1
## 872                 1         2              1
## 873                 1         1              1
## 874                 1         1              1
## 875                 1         1              1
## 876                 1         1              1
## 877                 1         1              1
## 878                 1         2              1
## 879                 1         1              1
## 880                 1         2              1
## 881                 1         1              1
## 882                 1         2              1
## 883                 1         1              1
## 884                 1         1              1
## 885                 1         2              1
## 886                 1         1              1
## 887                 1         1              1
## 888                 1         2              1
## 889                 1         2              1
## 890                 1         2              1
## 891                 1         2              1
## 892                 1         2              1
## 893                 1         2              1
## 894                 1         1              1
## 895                 1         2              1
## 896                 1         2              1
## 897                 2         1              1
## 898                 1         1              1
## 899                 2         2              1
## 900                 1         1              1
## 901                 1         2              1
## 902                 2         1              1
## 903                 1         2              1
## 904                 1         1              1
## 905                 1         1              1
## 906                 1         1              1
## 907                 1         1              1
## 908                 1         1              1
## 909                 2         1              1
## 910                 2         1              1
## 911                 2         1              1
## 912                 1         1              1
## 913                 2         2              1
## 914                 1         1              1
## 915                 2         1              1
## 916                 1         1              1
## 917                 1         1              1
## 918                 1         1              1
## 919                 2         1              1
## 920                 1         2              1
## 921                 1         1              1
## 922                 1         2              1
## 923                 1         1              1
## 924                 1         2              1
## 925                 1         1              1
## 926                 1         1              1
## 927                 1         2              1
## 928                 1         1              1
## 929                 2         2              1
## 930                 1         2              1
## 931                 1         1              1
## 932                 1         1              1
## 933                 1         1              1
## 934                 1         1              1
## 935                 1         2              2
## 936                 1         1              2
## 937                 1         1              1
## 938                 2         2              1
## 939                 1         1              1
## 940                 1         2              1
## 941                 1         1              1
## 942                 2         1              1
## 943                 2         1              1
## 944                 1         2              1
## 945                 1         1              1
## 946                 2         2              1
## 947                 1         1              1
## 948                 1         2              1
## 949                 2         1              1
## 950                 2         1              1
## 951                 1         1              1
## 952                 1         2              1
## 953                 2         1              1
## 954                 1         1              1
## 955                 1         1              1
## 956                 2         1              1
## 957                 1         1              1
## 958                 1         1              1
## 959                 1         1              1
## 960                 1         2              1
## 961                 1         1              1
## 962                 1         1              1
## 963                 1         2              1
## 964                 1         2              1
## 965                 2         1              1
## 966                 1         2              1
## 967                 1         2              1
## 968                 1         1              1
## 969                 1         2              1
## 970                 2         1              1
## 971                 1         2              1
## 972                 1         2              1
## 973                 1         1              1
## 974                 1         1              1
## 975                 1         1              1
## 976                 1         2              1
## 977                 1         2              2
## 978                 1         2              1
## 979                 1         2              1
## 980                 1         2              1
## 981                 1         2              1
## 982                 1         2              1
## 983                 1         2              1
## 984                 1         1              1
## 985                 1         2              1
## 986                 1         2              1
## 987                 1         2              2
## 988                 1         1              1
## 989                 1         1              1
## 990                 1         2              1
## 991                 1         1              1
## 992                 1         2              1
## 993                 2         2              1
## 994                 1         2              1
## 995                 1         2              1
## 996                 2         1              1
## 997                 1         1              1
## 998                 1         2              1
## 999                 1         2              1
## 1000                1         1              1

Naive bayes model

library(naivebayes)
## Warning: package 'naivebayes' was built under R version 3.4.3
naive_model<- naive_bayes(Creditability~., data=credit_train)
naive_model
## ===================== Naive Bayes ===================== 
## Call: 
## naive_bayes.formula(formula = Creditability ~ ., data = credit_train)
## 
## A priori probabilities: 
## 
##         0         1 
## 0.3146667 0.6853333 
## 
## Tables: 
##                
## Account.Balance        0        1
##            mean 1.923729 2.793774
##            sd   1.036826 1.252008
## 
##                           
## Duration.of.Credit..month.        0        1
##                       mean 24.46610 19.20039
##                       sd   13.82208 11.13433
## 
##                                  
## Payment.Status.of.Previous.Credit        0        1
##                              mean 2.161017 2.665370
##                              sd   1.071649 1.045219
## 
##        
## Purpose        0        1
##    mean 2.927966 2.803502
##    sd   2.944722 2.633253
## 
##              
## Credit.Amount        0        1
##          mean 3964.195 2984.177
##          sd   3597.093 2379.685
## 
## # ... and 15 more tables
(conf_nat <- table(predict(naive_model, credit_test), credit_test$Creditability))
##    
##       0   1
##   0  42  35
##   1  22 151
(Accuracy <- sum(diag(conf_nat))/sum(conf_nat)*100)
## [1] 77.2

this shows that the model is 77.2% accurate. The model also shows that 35 credit asker were classified by the model as not good creditors while they actually are, and also classifies 22 as good creditors while they are not.

Naive Bayes Classifier Part 2

library(caret)
## Warning: package 'caret' was built under R version 3.4.4
## Loading required package: lattice
## Loading required package: ggplot2
## Warning: package 'ggplot2' was built under R version 3.4.4
## Warning in as.POSIXlt.POSIXct(Sys.time()): unable to identify current timezone 'U':
## please set environment variable 'TZ'
credit_rand <- credit[order(runif(1000)),]
creditDataScaled <- scale(credit_rand[,2:ncol(credit_rand)], center= TRUE, scale = TRUE)
m <- cor(creditDataScaled)
highlycor <- findCorrelation(m, 0.30)
filteredData <- credit_rand[, -(highlycor[5]+1)]
filteredTraining <- filteredData[1:750, ]
filteredTest <- filteredData[751:1000, ]
filteredTraining$Creditability<- as.factor(filteredTraining$Creditability)
nb_model <- naive_bayes(filteredTraining$Creditability~., data = filteredTraining)
nb_model
## ===================== Naive Bayes ===================== 
## Call: 
## naive_bayes.formula(formula = filteredTraining$Creditability ~ 
##     ., data = filteredTraining)
## 
## A priori probabilities: 
## 
##         0         1 
## 0.3066667 0.6933333 
## 
## Tables: 
##                
## Account.Balance        0        1
##            mean 1.943478 2.896154
##            sd   1.082342 1.226232
## 
##                           
## Duration.of.Credit..month.        0        1
##                       mean 24.92174 19.20385
##                       sd   13.60044 11.05028
## 
##        
## Purpose        0        1
##    mean 2.856522 2.694231
##    sd   2.992177 2.533164
## 
##              
## Credit.Amount        0        1
##          mean 3837.087 2948.110
##          sd   3393.488 2380.472
## 
##                     
## Value.Savings.Stocks        0        1
##                 mean 1.691304 2.328846
##                 sd   1.365646 1.653377
## 
## # ... and 14 more tables

evaluating Model Performance

filteredTestPred <- predict(nb_model, newdata = filteredTest)
table(filteredTestPred, filteredTest$Creditability)
##                 
## filteredTestPred   0   1
##                0  49  44
##                1  21 136

With this method, it shows that 38 credit asker were classified by the model as not good creditors while they actually are, and also classifies 44 as good creditors while they are not. Basically the difference between the two methods, more people were classified as bad in part 2 and less bad creditor were shown as good creditors. Overall i would say that method 2 is less risky but no significant difference.

Part3 News Popularity

news <- read.csv("OnlineNewsPopularity.csv")
str(news)
## 'data.frame':    39644 obs. of  61 variables:
##  $ url                          : Factor w/ 39644 levels "http://mashable.com/2013/01/07/amazon-instant-video-browser/",..: 1 2 3 4 5 6 7 8 9 10 ...
##  $ timedelta                    : num  731 731 731 731 731 731 731 731 731 731 ...
##  $ n_tokens_title               : num  12 9 9 9 13 10 8 12 11 10 ...
##  $ n_tokens_content             : num  219 255 211 531 1072 ...
##  $ n_unique_tokens              : num  0.664 0.605 0.575 0.504 0.416 ...
##  $ n_non_stop_words             : num  1 1 1 1 1 ...
##  $ n_non_stop_unique_tokens     : num  0.815 0.792 0.664 0.666 0.541 ...
##  $ num_hrefs                    : num  4 3 3 9 19 2 21 20 2 4 ...
##  $ num_self_hrefs               : num  2 1 1 0 19 2 20 20 0 1 ...
##  $ num_imgs                     : num  1 1 1 1 20 0 20 20 0 1 ...
##  $ num_videos                   : num  0 0 0 0 0 0 0 0 0 1 ...
##  $ average_token_length         : num  4.68 4.91 4.39 4.4 4.68 ...
##  $ num_keywords                 : num  5 4 6 7 7 9 10 9 7 5 ...
##  $ data_channel_is_lifestyle    : num  0 0 0 0 0 0 1 0 0 0 ...
##  $ data_channel_is_entertainment: num  1 0 0 1 0 0 0 0 0 0 ...
##  $ data_channel_is_bus          : num  0 1 1 0 0 0 0 0 0 0 ...
##  $ data_channel_is_socmed       : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ data_channel_is_tech         : num  0 0 0 0 1 1 0 1 1 0 ...
##  $ data_channel_is_world        : num  0 0 0 0 0 0 0 0 0 1 ...
##  $ kw_min_min                   : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ kw_max_min                   : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ kw_avg_min                   : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ kw_min_max                   : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ kw_max_max                   : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ kw_avg_max                   : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ kw_min_avg                   : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ kw_max_avg                   : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ kw_avg_avg                   : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ self_reference_min_shares    : num  496 0 918 0 545 8500 545 545 0 0 ...
##  $ self_reference_max_shares    : num  496 0 918 0 16000 8500 16000 16000 0 0 ...
##  $ self_reference_avg_sharess   : num  496 0 918 0 3151 ...
##  $ weekday_is_monday            : num  1 1 1 1 1 1 1 1 1 1 ...
##  $ weekday_is_tuesday           : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ weekday_is_wednesday         : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ weekday_is_thursday          : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ weekday_is_friday            : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ weekday_is_saturday          : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ weekday_is_sunday            : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ is_weekend                   : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ LDA_00                       : num  0.5003 0.7998 0.2178 0.0286 0.0286 ...
##  $ LDA_01                       : num  0.3783 0.05 0.0333 0.4193 0.0288 ...
##  $ LDA_02                       : num  0.04 0.0501 0.0334 0.4947 0.0286 ...
##  $ LDA_03                       : num  0.0413 0.0501 0.0333 0.0289 0.0286 ...
##  $ LDA_04                       : num  0.0401 0.05 0.6822 0.0286 0.8854 ...
##  $ global_subjectivity          : num  0.522 0.341 0.702 0.43 0.514 ...
##  $ global_sentiment_polarity    : num  0.0926 0.1489 0.3233 0.1007 0.281 ...
##  $ global_rate_positive_words   : num  0.0457 0.0431 0.0569 0.0414 0.0746 ...
##  $ global_rate_negative_words   : num  0.0137 0.01569 0.00948 0.02072 0.01213 ...
##  $ rate_positive_words          : num  0.769 0.733 0.857 0.667 0.86 ...
##  $ rate_negative_words          : num  0.231 0.267 0.143 0.333 0.14 ...
##  $ avg_positive_polarity        : num  0.379 0.287 0.496 0.386 0.411 ...
##  $ min_positive_polarity        : num  0.1 0.0333 0.1 0.1364 0.0333 ...
##  $ max_positive_polarity        : num  0.7 0.7 1 0.8 1 0.6 1 1 0.8 0.5 ...
##  $ avg_negative_polarity        : num  -0.35 -0.119 -0.467 -0.37 -0.22 ...
##  $ min_negative_polarity        : num  -0.6 -0.125 -0.8 -0.6 -0.5 -0.4 -0.5 -0.5 -0.125 -0.5 ...
##  $ max_negative_polarity        : num  -0.2 -0.1 -0.133 -0.167 -0.05 ...
##  $ title_subjectivity           : num  0.5 0 0 0 0.455 ...
##  $ title_sentiment_polarity     : num  -0.188 0 0 0 0.136 ...
##  $ abs_title_subjectivity       : num  0 0.5 0.5 0.5 0.0455 ...
##  $ abs_title_sentiment_polarity : num  0.188 0 0 0 0.136 ...
##  $ shares                       : int  593 711 1500 1200 505 855 556 891 3600 710 ...
newsShort <- data.frame(news$n_tokens_title, news$n_tokens_content, news$n_unique_tokens, news$n_non_stop_words, news$num_hrefs, news$num_imgs, news$num_videos, news$average_token_length, news$num_keywords, news$kw_max_max, news$global_sentiment_polarity, news$avg_positive_polarity, news$title_subjectivity, news$title_sentiment_polarity, news$abs_title_subjectivity, news$abs_title_sentiment_polarity, news$shares)

colnames(newsShort) <- c("n_tokens_title", "n_tokens_content", "n_unique_tokens", "n_non_stop_words", "num_hrefs", "num_imgs", "num_videos", "average_token_length", "num_keywords", "kw_max_max", "global_sentiment_polarity", "avg_positive_polarity", "title_subjectivity", "title_sentiment_polarity", "abs_title_subjectivity", "abs_title_sentiment_polarity", "shares")

convert share variable from a numerical to categorical

newsShort$popular = rep('na', nrow(newsShort))
for(i in 1:39644) {
     if(newsShort$shares[i] >= 1400) {
         newsShort$popular[i] = "yes"} 
     else {newsShort$popular[i] = "no"}
}
newsShort$shares = newsShort$popular

newsShort$shares <- as.factor(newsShort$shares)
newsShort <- subset(newsShort, select = - popular)

Randomize the data

set.seed(12345)
news_rand <- newsShort[order(runif(10000)), ]
news_train <- news_rand[1:9000, ]
news_test <- news_rand[9001:10000, ]
prop.table(table(news_train$shares))
## 
##        no       yes 
## 0.4308889 0.5691111
nb_model <- naive_bayes(shares ~ ., data=news_train)
nb_model
## ===================== Naive Bayes ===================== 
## Call: 
## naive_bayes.formula(formula = shares ~ ., data = news_train)
## 
## A priori probabilities: 
## 
##        no       yes 
## 0.4308889 0.5691111 
## 
## Tables: 
##               
## n_tokens_title       no      yes
##           mean 9.852243 9.697384
##           sd   1.934198 1.984855
## 
##                 
## n_tokens_content       no      yes
##             mean 456.2597 507.5463
##             sd   356.0001 438.3436
## 
##                
## n_unique_tokens        no       yes
##            mean 0.5702261 0.5544309
##            sd   0.1123952 0.1235964
## 
##                 
## n_non_stop_words         no        yes
##             mean 0.99432697 0.99043342
##             sd   0.07511524 0.09734940
## 
##          
## num_hrefs        no       yes
##      mean  9.142599 10.496486
##      sd    8.655057 11.309569
## 
## # ... and 11 more tables
news_Pred <- predict(nb_model, newdata = news_test)
(conf_nat <- table(news_Pred, news_test$shares))
##          
## news_Pred  no yes
##       no  338 421
##       yes  76 165
(Accuracy <- sum(diag(conf_nat))/sum(conf_nat)*100)
## [1] 50.3

Naive Bayes Classifier Part 2

news <- news[order(runif(10000)), ]
newsDataScaled <- scale(news[,2:ncol(news)], center= TRUE, scale = TRUE)
m <- cor(newsDataScaled)
highlycor <- findCorrelation(m, 0.30)
filteredData <- news[, -(highlycor[5]+1)]
filteredTraining <- filteredData[1:9000, ]
filteredTest <- filteredData[9000:10000, ]
filteredTraining$shares<- as.factor(filteredTraining$shares)
nb_model <- naive_bayes(filteredTraining$shares~., data = filteredTraining)
nb_model
## ===================== Naive Bayes ===================== 
## Call: 
## naive_bayes.formula(formula = filteredTraining$shares ~ ., data = filteredTraining)
## 
## A priori probabilities: 
## 
##            4           23           41           45           47 
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111 
##           48           51           60           64           66 
## 0.0001111111 0.0001111111 0.0002222222 0.0002222222 0.0001111111 
##           70           80           82           84           86 
## 0.0001111111 0.0001111111 0.0003333333 0.0001111111 0.0001111111 
##           87           88           90           91           95 
## 0.0001111111 0.0002222222 0.0001111111 0.0001111111 0.0002222222 
##           97           98           99          102          106 
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111 
##          109          111          116          119          123 
## 0.0001111111 0.0001111111 0.0003333333 0.0002222222 0.0002222222 
##          127          129          130          134          135 
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111 
##          137          138          140          141          143 
## 0.0001111111 0.0002222222 0.0002222222 0.0001111111 0.0001111111 
##          144          146          149          150          151 
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111 
##          154          158          160          162          163 
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111 
##          168          176          178          180          181 
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0002222222 
##          183          186          190          191          192 
## 0.0001111111 0.0001111111 0.0002222222 0.0001111111 0.0001111111 
##          196          201          202          205          206 
## 0.0001111111 0.0001111111 0.0001111111 0.0003333333 0.0001111111 
##          211          213          215          217          218 
## 0.0002222222 0.0002222222 0.0002222222 0.0002222222 0.0002222222 
##          221          223          224          226          228 
## 0.0002222222 0.0001111111 0.0002222222 0.0001111111 0.0002222222 
##          233          236          237          238          240 
## 0.0002222222 0.0001111111 0.0003333333 0.0001111111 0.0001111111 
##          241          245          246          248          250 
## 0.0002222222 0.0002222222 0.0001111111 0.0001111111 0.0001111111 
##          251          256          258          261          262 
## 0.0002222222 0.0001111111 0.0002222222 0.0001111111 0.0001111111 
##          264          266          268          269          277 
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111 
##          278          279          280          285          286 
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111 
##          287          292          294          295          296 
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111 
##          300          301          302          305          308 
## 0.0002222222 0.0001111111 0.0001111111 0.0001111111 0.0002222222 
##          309          313          317          318          321 
## 0.0001111111 0.0001111111 0.0001111111 0.0002222222 0.0001111111 
##          322          324          325          326          331 
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111 
##          336          339          340          341          342 
## 0.0001111111 0.0001111111 0.0001111111 0.0002222222 0.0002222222 
##          343          346          348          349          350 
## 0.0002222222 0.0002222222 0.0002222222 0.0001111111 0.0002222222 
##          354          356          357          358          365 
## 0.0002222222 0.0001111111 0.0002222222 0.0002222222 0.0001111111 
##          366          368          369          371          373 
## 0.0003333333 0.0001111111 0.0002222222 0.0002222222 0.0002222222 
##          375          377          378          379          380 
## 0.0002222222 0.0002222222 0.0001111111 0.0001111111 0.0001111111 
##          381          382          383          384          386 
## 0.0001111111 0.0002222222 0.0001111111 0.0001111111 0.0002222222 
##          387          390          391          392          393 
## 0.0001111111 0.0002222222 0.0001111111 0.0002222222 0.0003333333 
##          395          396          397          398          399 
## 0.0002222222 0.0001111111 0.0001111111 0.0002222222 0.0002222222 
##          400          401          402          403          404 
## 0.0003333333 0.0003333333 0.0002222222 0.0001111111 0.0001111111 
##          407          408          410          411          412 
## 0.0001111111 0.0002222222 0.0002222222 0.0001111111 0.0004444444 
##          413          414          416          417          419 
## 0.0002222222 0.0001111111 0.0005555556 0.0003333333 0.0002222222 
##          420          421          422          423          424 
## 0.0001111111 0.0002222222 0.0001111111 0.0003333333 0.0001111111 
##          425          426          427          428          429 
## 0.0003333333 0.0001111111 0.0001111111 0.0001111111 0.0003333333 
##          430          431          432          434          435 
## 0.0002222222 0.0001111111 0.0003333333 0.0001111111 0.0003333333 
##          436          437          438          440          441 
## 0.0004444444 0.0003333333 0.0002222222 0.0003333333 0.0002222222 
##          444          445          446          447          448 
## 0.0001111111 0.0003333333 0.0002222222 0.0002222222 0.0004444444 
##          449          450          451          452          454 
## 0.0001111111 0.0003333333 0.0003333333 0.0001111111 0.0003333333 
##          455          456          458          459          460 
## 0.0003333333 0.0004444444 0.0002222222 0.0001111111 0.0003333333 
##          461          462          463          464          465 
## 0.0003333333 0.0003333333 0.0003333333 0.0001111111 0.0001111111 
##          466          467          468          469          471 
## 0.0001111111 0.0003333333 0.0004444444 0.0004444444 0.0003333333 
##          472          473          474          475          476 
## 0.0002222222 0.0004444444 0.0001111111 0.0004444444 0.0001111111 
##          477          478          480          482          483 
## 0.0001111111 0.0002222222 0.0002222222 0.0002222222 0.0002222222 
##          484          485          486          488          489 
## 0.0004444444 0.0001111111 0.0001111111 0.0002222222 0.0002222222 
##          490          492          493          494          495 
## 0.0001111111 0.0003333333 0.0003333333 0.0003333333 0.0004444444 
##          496          497          498          500          501 
## 0.0002222222 0.0002222222 0.0005555556 0.0003333333 0.0001111111 
##          502          503          504          505          506 
## 0.0001111111 0.0003333333 0.0004444444 0.0004444444 0.0005555556 
##          507          508          510          511          512 
## 0.0002222222 0.0001111111 0.0003333333 0.0003333333 0.0001111111 
##          513          514          515          516          517 
## 0.0002222222 0.0001111111 0.0002222222 0.0004444444 0.0001111111 
##          518          519          520          521          522 
## 0.0004444444 0.0001111111 0.0001111111 0.0001111111 0.0003333333 
##          523          525          526          527          528 
## 0.0003333333 0.0002222222 0.0004444444 0.0006666667 0.0003333333 
##          529          530          531          532          533 
## 0.0004444444 0.0001111111 0.0005555556 0.0004444444 0.0005555556 
##          534          535          536          537          538 
## 0.0002222222 0.0004444444 0.0004444444 0.0004444444 0.0005555556 
##          539          541          542          544          545 
## 0.0003333333 0.0002222222 0.0004444444 0.0003333333 0.0002222222 
##          546          547          548          549          550 
## 0.0002222222 0.0001111111 0.0005555556 0.0004444444 0.0002222222 
##          552          553          555          556          557 
## 0.0002222222 0.0002222222 0.0002222222 0.0003333333 0.0001111111 
##          558          559          560          561          562 
## 0.0001111111 0.0003333333 0.0003333333 0.0002222222 0.0001111111 
##          563          564          565          566          567 
## 0.0002222222 0.0004444444 0.0004444444 0.0006666667 0.0001111111 
##          568          569          570          571          572 
## 0.0002222222 0.0002222222 0.0003333333 0.0003333333 0.0002222222 
##          573          574          575          576          577 
## 0.0001111111 0.0005555556 0.0005555556 0.0005555556 0.0004444444 
##          578          579          580          581          582 
## 0.0004444444 0.0005555556 0.0001111111 0.0006666667 0.0003333333 
##          583          584          585          586          588 
## 0.0003333333 0.0003333333 0.0005555556 0.0005555556 0.0002222222 
##          589          590          591          592          593 
## 0.0005555556 0.0003333333 0.0005555556 0.0001111111 0.0005555556 
##          594          595          596          597          598 
## 0.0002222222 0.0001111111 0.0003333333 0.0003333333 0.0003333333 
##          599          600          601          602          603 
## 0.0004444444 0.0001111111 0.0001111111 0.0006666667 0.0003333333 
##          604          605          606          607          608 
## 0.0002222222 0.0004444444 0.0007777778 0.0001111111 0.0003333333 
##          609          610          612          613          614 
## 0.0002222222 0.0003333333 0.0007777778 0.0002222222 0.0006666667 
##          615          616          618          619          620 
## 0.0001111111 0.0002222222 0.0004444444 0.0002222222 0.0006666667 
##          621          622          623          624          625 
## 0.0004444444 0.0002222222 0.0005555556 0.0004444444 0.0001111111 
##          626          627          628          629          630 
## 0.0004444444 0.0001111111 0.0003333333 0.0003333333 0.0003333333 
##          631          632          633          634          635 
## 0.0003333333 0.0003333333 0.0002222222 0.0002222222 0.0007777778 
##          636          637          638          639          640 
## 0.0002222222 0.0002222222 0.0002222222 0.0008888889 0.0005555556 
##          641          642          643          644          645 
## 0.0001111111 0.0004444444 0.0004444444 0.0003333333 0.0006666667 
##          646          647          648          649          650 
## 0.0003333333 0.0001111111 0.0005555556 0.0004444444 0.0004444444 
##          651          652          653          654          655 
## 0.0004444444 0.0001111111 0.0001111111 0.0003333333 0.0002222222 
##          656          657          658          659          660 
## 0.0006666667 0.0008888889 0.0005555556 0.0003333333 0.0004444444 
##          661          662          663          664          665 
## 0.0005555556 0.0003333333 0.0003333333 0.0002222222 0.0001111111 
##          666          667          668          669          670 
## 0.0001111111 0.0003333333 0.0002222222 0.0002222222 0.0004444444 
##          671          672          673          674          675 
## 0.0004444444 0.0003333333 0.0003333333 0.0003333333 0.0005555556 
##          676          677          678          679          680 
## 0.0006666667 0.0003333333 0.0003333333 0.0004444444 0.0003333333 
##          681          682          683          684          685 
## 0.0007777778 0.0006666667 0.0004444444 0.0002222222 0.0002222222 
##          686          687          688          689          690 
## 0.0004444444 0.0004444444 0.0003333333 0.0005555556 0.0006666667 
##          691          692          693          694          695 
## 0.0003333333 0.0004444444 0.0003333333 0.0004444444 0.0002222222 
##          696          697          698          699          700 
## 0.0004444444 0.0003333333 0.0007777778 0.0003333333 0.0004444444 
##          701          702          703          704          705 
## 0.0010000000 0.0002222222 0.0003333333 0.0003333333 0.0004444444 
##          706          707          708          709          710 
## 0.0003333333 0.0004444444 0.0002222222 0.0003333333 0.0007777778 
##          711          712          713          714          715 
## 0.0003333333 0.0007777778 0.0004444444 0.0003333333 0.0004444444 
##          716          717          718          719          720 
## 0.0003333333 0.0005555556 0.0004444444 0.0003333333 0.0005555556 
##          721          722          723          724          725 
## 0.0001111111 0.0002222222 0.0001111111 0.0001111111 0.0005555556 
##          726          727          728          729          730 
## 0.0006666667 0.0006666667 0.0006666667 0.0005555556 0.0012222222 
##          731          732          733          734          735 
## 0.0006666667 0.0006666667 0.0006666667 0.0002222222 0.0007777778 
##          736          737          738          739          740 
## 0.0005555556 0.0003333333 0.0004444444 0.0002222222 0.0006666667 
##          741          742          743          744          745 
## 0.0006666667 0.0007777778 0.0002222222 0.0005555556 0.0006666667 
##          746          748          749          750          751 
## 0.0006666667 0.0003333333 0.0002222222 0.0007777778 0.0008888889 
##          752          753          754          755          756 
## 0.0010000000 0.0005555556 0.0005555556 0.0006666667 0.0005555556 
##          757          758          759          760          761 
## 0.0006666667 0.0002222222 0.0005555556 0.0004444444 0.0003333333 
##          762          763          764          765          766 
## 0.0002222222 0.0005555556 0.0004444444 0.0004444444 0.0001111111 
##          767          768          769          770          771 
## 0.0004444444 0.0004444444 0.0004444444 0.0004444444 0.0005555556 
##          772          773          774          775          776 
## 0.0002222222 0.0004444444 0.0005555556 0.0007777778 0.0002222222 
##          777          778          779          780          781 
## 0.0002222222 0.0001111111 0.0002222222 0.0001111111 0.0001111111 
##          782          783          784          785          786 
## 0.0004444444 0.0010000000 0.0002222222 0.0004444444 0.0004444444 
##          787          788          789          790          791 
## 0.0005555556 0.0003333333 0.0005555556 0.0010000000 0.0004444444 
##          792          793          794          795          796 
## 0.0008888889 0.0001111111 0.0007777778 0.0005555556 0.0002222222 
##          797          798          799          800          801 
## 0.0003333333 0.0007777778 0.0004444444 0.0005555556 0.0003333333 
##          802          803          804          805          806 
## 0.0007777778 0.0002222222 0.0005555556 0.0006666667 0.0004444444 
##          807          808          809          810          811 
## 0.0004444444 0.0006666667 0.0006666667 0.0005555556 0.0006666667 
##          812          813          814          815          816 
## 0.0004444444 0.0002222222 0.0002222222 0.0004444444 0.0005555556 
##          817          818          819          820          821 
## 0.0005555556 0.0005555556 0.0003333333 0.0002222222 0.0007777778 
##          822          823          824          825          826 
## 0.0005555556 0.0008888889 0.0005555556 0.0011111111 0.0002222222 
##          827          828          829          830          831 
## 0.0006666667 0.0004444444 0.0003333333 0.0003333333 0.0007777778 
##          832          833          834          835          836 
## 0.0006666667 0.0007777778 0.0005555556 0.0004444444 0.0004444444 
##          837          838          839          840          841 
## 0.0005555556 0.0007777778 0.0005555556 0.0005555556 0.0002222222 
##          842          843          844          845          846 
## 0.0002222222 0.0005555556 0.0005555556 0.0007777778 0.0004444444 
##          847          848          849          850          851 
## 0.0001111111 0.0002222222 0.0004444444 0.0003333333 0.0004444444 
##          852          853          854          855          856 
## 0.0004444444 0.0003333333 0.0004444444 0.0006666667 0.0006666667 
##          857          858          859          860          861 
## 0.0007777778 0.0004444444 0.0006666667 0.0005555556 0.0003333333 
##          862          863          864          865          866 
## 0.0003333333 0.0005555556 0.0006666667 0.0001111111 0.0003333333 
##          867          868          869          870          871 
## 0.0004444444 0.0005555556 0.0004444444 0.0004444444 0.0005555556 
##          872          873          874          875          876 
## 0.0006666667 0.0005555556 0.0005555556 0.0002222222 0.0004444444 
##          877          878          879          880          881 
## 0.0004444444 0.0007777778 0.0001111111 0.0007777778 0.0002222222 
##          882          883          884          885          886 
## 0.0004444444 0.0003333333 0.0005555556 0.0003333333 0.0004444444 
##          887          888          889          890          891 
## 0.0006666667 0.0002222222 0.0006666667 0.0006666667 0.0007777778 
##          892          894          895          896          897 
## 0.0005555556 0.0005555556 0.0007777778 0.0005555556 0.0003333333 
##          898          899          900          901          902 
## 0.0004444444 0.0006666667 0.0007777778 0.0003333333 0.0010000000 
##          903          904          905          906          907 
## 0.0006666667 0.0005555556 0.0005555556 0.0002222222 0.0008888889 
##          908          909          910          911          912 
## 0.0002222222 0.0007777778 0.0004444444 0.0004444444 0.0006666667 
##          913          914          915          916          917 
## 0.0007777778 0.0007777778 0.0005555556 0.0007777778 0.0006666667 
##          918          919          920          921          922 
## 0.0010000000 0.0005555556 0.0003333333 0.0002222222 0.0006666667 
##          923          924          925          926          927 
## 0.0004444444 0.0008888889 0.0003333333 0.0005555556 0.0002222222 
##          928          929          930          931          932 
## 0.0005555556 0.0002222222 0.0006666667 0.0001111111 0.0003333333 
##          933          934          935          936          937 
## 0.0006666667 0.0006666667 0.0003333333 0.0003333333 0.0006666667 
##          938          939          940          941          942 
## 0.0002222222 0.0011111111 0.0005555556 0.0001111111 0.0005555556 
##          943          944          945          946          947 
## 0.0003333333 0.0004444444 0.0003333333 0.0006666667 0.0004444444 
##          948          949          950          951          952 
## 0.0001111111 0.0005555556 0.0007777778 0.0007777778 0.0005555556 
##          953          954          955          956          957 
## 0.0007777778 0.0005555556 0.0003333333 0.0006666667 0.0007777778 
##          958          959          960          961          962 
## 0.0003333333 0.0004444444 0.0004444444 0.0002222222 0.0007777778 
##          963          964          965          966          967 
## 0.0004444444 0.0006666667 0.0004444444 0.0006666667 0.0004444444 
##          968          969          970          971          972 
## 0.0004444444 0.0006666667 0.0007777778 0.0006666667 0.0007777778 
##          973          974          975          976          977 
## 0.0006666667 0.0002222222 0.0001111111 0.0003333333 0.0003333333 
##          978          979          980          981          982 
## 0.0005555556 0.0010000000 0.0004444444 0.0003333333 0.0002222222 
##          983          984          985          986          987 
## 0.0008888889 0.0006666667 0.0003333333 0.0004444444 0.0007777778 
##          988          989          990          991          992 
## 0.0002222222 0.0005555556 0.0008888889 0.0007777778 0.0008888889 
##          993          994          995          996          997 
## 0.0002222222 0.0005555556 0.0002222222 0.0001111111 0.0003333333 
##          998          999         1000         1100         1200 
## 0.0012222222 0.0004444444 0.0238888889 0.0505555556 0.0502222222 
##         1300         1400         1500         1600         1700 
## 0.0405555556 0.0424444444 0.0360000000 0.0290000000 0.0270000000 
##         1800         1900         2000         2100         2200 
## 0.0233333333 0.0238888889 0.0206666667 0.0215555556 0.0191111111 
##         2300         2400         2500         2600         2700 
## 0.0151111111 0.0132222222 0.0133333333 0.0120000000 0.0126666667 
##         2800         2900         3000         3100         3200 
## 0.0107777778 0.0112222222 0.0088888889 0.0090000000 0.0100000000 
##         3300         3400         3500         3600         3700 
## 0.0066666667 0.0088888889 0.0067777778 0.0046666667 0.0063333333 
##         3800         3900         4000         4100         4200 
## 0.0054444444 0.0060000000 0.0038888889 0.0047777778 0.0053333333 
##         4300         4400         4500         4600         4700 
## 0.0043333333 0.0040000000 0.0047777778 0.0036666667 0.0028888889 
##         4800         4900         5000         5100         5200 
## 0.0044444444 0.0035555556 0.0034444444 0.0032222222 0.0032222222 
##         5300         5400         5500         5600         5700 
## 0.0025555556 0.0023333333 0.0023333333 0.0018888889 0.0024444444 
##         5800         5900         6000         6100         6200 
## 0.0020000000 0.0014444444 0.0024444444 0.0020000000 0.0018888889 
##         6300         6400         6500         6600         6700 
## 0.0026666667 0.0018888889 0.0025555556 0.0018888889 0.0014444444 
##         6800         6900         7000         7100         7200 
## 0.0017777778 0.0020000000 0.0008888889 0.0013333333 0.0015555556 
##         7300         7400         7500         7600         7700 
## 0.0014444444 0.0020000000 0.0008888889 0.0012222222 0.0012222222 
##         7800         7900         8000         8100         8200 
## 0.0014444444 0.0011111111 0.0013333333 0.0011111111 0.0010000000 
##         8300         8400         8500         8600         8700 
## 0.0006666667 0.0007777778 0.0007777778 0.0006666667 0.0007777778 
##         8800         8900         9000         9100         9200 
## 0.0004444444 0.0005555556 0.0006666667 0.0010000000 0.0011111111 
##         9300         9400         9500         9600         9700 
## 0.0005555556 0.0008888889 0.0007777778 0.0004444444 0.0013333333 
##         9800         9900        10000        10100        10200 
## 0.0010000000 0.0004444444 0.0007777778 0.0005555556 0.0004444444 
##        10300        10400        10500        10600        10700 
## 0.0006666667 0.0006666667 0.0002222222 0.0008888889 0.0011111111 
##        10800        10900        11000        11100        11200 
## 0.0006666667 0.0004444444 0.0005555556 0.0008888889 0.0002222222 
##        11300        11400        11500        11600        11700 
## 0.0003333333 0.0006666667 0.0002222222 0.0001111111 0.0008888889 
##        11800        11900        12000        12100        12200 
## 0.0004444444 0.0006666667 0.0006666667 0.0003333333 0.0002222222 
##        12300        12400        12500        12600        12700 
## 0.0010000000 0.0006666667 0.0005555556 0.0002222222 0.0002222222 
##        12800        12900        13000        13100        13200 
## 0.0004444444 0.0002222222 0.0004444444 0.0001111111 0.0002222222 
##        13300        13400        13500        13600        13700 
## 0.0003333333 0.0003333333 0.0002222222 0.0002222222 0.0004444444 
##        13800        13900        14000        14100        14200 
## 0.0002222222 0.0007777778 0.0001111111 0.0001111111 0.0001111111 
##        14300        14400        14500        14600        14700 
## 0.0005555556 0.0004444444 0.0004444444 0.0001111111 0.0004444444 
##        14800        14900        15000        15200        15300 
## 0.0004444444 0.0002222222 0.0004444444 0.0004444444 0.0002222222 
##        15400        15500        15600        15700        15800 
## 0.0004444444 0.0001111111 0.0002222222 0.0004444444 0.0002222222 
##        15900        16100        16200        16300        16400 
## 0.0002222222 0.0003333333 0.0004444444 0.0004444444 0.0002222222 
##        16500        16600        16700        16800        16900 
## 0.0002222222 0.0004444444 0.0003333333 0.0003333333 0.0002222222 
##        17000        17100        17200        17300        17400 
## 0.0001111111 0.0005555556 0.0001111111 0.0002222222 0.0001111111 
##        17500        17600        17800        17900        18000 
## 0.0002222222 0.0003333333 0.0002222222 0.0003333333 0.0002222222 
##        18100        18200        18300        18400        18700 
## 0.0003333333 0.0002222222 0.0001111111 0.0005555556 0.0001111111 
##        18900        19100        19200        19400        19800 
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0002222222 
##        20200        20300        20500        20600        20700 
## 0.0002222222 0.0001111111 0.0001111111 0.0002222222 0.0002222222 
##        20800        20900        21000        21100        21400 
## 0.0002222222 0.0003333333 0.0001111111 0.0001111111 0.0002222222 
##        21500        21700        21800        21900        22000 
## 0.0002222222 0.0002222222 0.0001111111 0.0001111111 0.0002222222 
##        22100        22200        22300        23000        23100 
## 0.0002222222 0.0001111111 0.0003333333 0.0001111111 0.0001111111 
##        23300        23500        23600        23700        23800 
## 0.0001111111 0.0003333333 0.0001111111 0.0002222222 0.0001111111 
##        23900        24000        24200        24300        24400 
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0002222222 
##        24500        24800        24900        25000        25100 
## 0.0003333333 0.0001111111 0.0001111111 0.0001111111 0.0001111111 
##        25200        25300        25700        26200        26300 
## 0.0003333333 0.0002222222 0.0001111111 0.0001111111 0.0001111111 
##        26400        26600        26900        27000        27300 
## 0.0003333333 0.0001111111 0.0001111111 0.0002222222 0.0002222222 
##        27400        27700        27900        28200        28300 
## 0.0001111111 0.0002222222 0.0001111111 0.0003333333 0.0001111111 
##        28600        28900        30000        30200        30400 
## 0.0001111111 0.0001111111 0.0001111111 0.0002222222 0.0001111111 
##        31400        31600        32200        32600        32700 
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111 
##        33100        33900        34900        35100        35300 
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111 
##        35800        36100        36200        36700        36800 
## 0.0002222222 0.0001111111 0.0003333333 0.0001111111 0.0001111111 
##        37400        39200        39400        40100        40400 
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0002222222 
##        41200        41600        41700        42200        42600 
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111 
##        43100        44700        45400        48800        49000 
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111 
##        50200        51900        53100        53700        54300 
## 0.0002222222 0.0001111111 0.0001111111 0.0001111111 0.0001111111 
##        56400        57600        61500        61600        62300 
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111 
##        65300        68300        71800        73100        80400 
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111 
##        81200        87000        93800        97200       104100 
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111 
##       112500       118700       144400       196700       210300 
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111 
##       227300       306100       617900       690400       843300 
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111 
## 
## Tables: 
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                          4
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                         23
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                         41
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                         45
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                         47
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                         48
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                         51
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                         60
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                         64
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                         66
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                         70
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                         80
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                         82
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                         84
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                         86
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                         87
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                         88
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                         90
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                         91
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                         95
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                         97
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                         98
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                         99
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        102
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        106
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        109
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        111
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        116
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        119
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        123
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        127
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        129
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        130
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        134
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        135
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        137
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        138
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        140
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        141
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        143
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        144
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        146
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        149
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        150
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        151
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        154
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        158
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        160
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        162
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        163
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        168
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        176
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        178
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        180
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        181
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        183
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        186
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        190
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        191
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        192
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        196
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        201
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        202
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        205
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        206
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        211
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        213
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        215
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        217
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.500000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        218
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        221
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        223
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        224
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        226
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        228
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        233
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        236
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        237
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        238
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        240
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        241
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        245
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        246
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        248
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        250
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        251
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        256
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        258
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        261
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        262
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        264
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        266
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        268
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        269
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        277
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        278
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        279
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        280
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        285
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        286
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        287
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        292
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        294
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        295
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        296
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        301
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        302
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        305
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        308
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        309
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        313
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        317
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        318
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        321
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        322
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        324
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        325
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        326
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        331
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        336
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        339
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        340
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        341
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        342
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        343
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        346
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        348
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        349
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        350
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        354
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        356
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        357
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        358
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        365
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        366
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        368
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        369
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        371
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        373
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        375
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        377
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        378
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        379
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        380
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        381
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        382
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.500000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        383
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        384
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        386
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        387
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        390
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        391
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        392
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        393
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        395
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        396
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        397
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        398
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        399
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.333333333
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        401
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.333333333
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        402
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        403
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        404
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        407
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        408
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        410
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        411
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        412
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        413
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        414
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        416
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        417
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        419
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        420
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        421
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        422
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        423
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        424
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        425
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.333333333
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        426
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        427
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        428
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        429
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        430
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        431
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        432
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        434
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        435
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        436
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        437
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        438
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        440
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        441
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        444
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        445
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.333333333
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        446
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        447
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        448
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        449
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        450
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        451
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        452
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        454
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        455
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.333333333
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        456
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        458
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        459
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          1.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        460
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        461
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        462
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.333333333
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        463
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        464
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        465
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        466
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        467
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        468
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.250000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        469
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        471
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        472
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        473
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        474
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        475
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        476
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        477
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        478
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        480
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.500000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        482
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        483
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        484
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        485
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        486
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        488
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        489
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        490
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        492
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        493
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        494
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        495
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.250000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        496
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        497
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        498
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        500
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.333333333
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        501
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        502
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        503
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        504
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.250000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        505
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.250000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        506
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        507
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.500000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        508
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        510
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        511
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        512
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        513
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        514
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        515
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        516
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        517
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        518
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        519
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        520
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        521
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        522
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        523
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        525
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        526
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        527
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        528
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        529
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        530
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        531
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        532
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        533
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        534
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        535
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        536
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.250000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        537
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        538
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        539
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        541
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        542
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        544
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        545
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.500000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        546
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        547
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        548
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        549
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        550
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        552
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        553
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        555
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        556
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.333333333
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        557
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        558
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        559
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        560
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        561
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        562
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        563
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        564
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        565
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        566
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        567
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        568
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        569
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        570
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        571
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        572
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        573
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     1.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        574
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        575
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.200000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        576
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        577
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        578
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        579
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        580
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        581
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        582
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        583
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        584
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        585
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.200000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        586
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        588
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        589
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        590
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        591
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        592
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        593
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.200000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        594
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        595
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        596
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        597
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        598
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.333333333
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.333333333
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        599
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        601
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        602
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        603
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        604
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        605
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        606
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        607
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        608
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        609
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        610
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        612
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        613
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        614
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        615
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        616
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        618
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        619
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        620
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        621
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        622
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        623
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        624
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        625
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        626
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        627
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        628
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        629
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        630
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        631
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.333333333
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        632
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        633
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        634
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        635
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        636
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        637
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        638
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        639
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        640
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        641
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        642
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        643
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        644
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        645
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.166666667
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        646
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        647
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        648
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        649
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        650
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        651
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        652
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        653
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        654
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        655
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        656
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        657
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        658
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        659
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        660
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        661
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        662
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        663
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        664
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        665
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        666
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        667
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        668
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        669
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        670
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        671
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        672
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        673
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        674
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        675
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        676
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        677
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        678
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        679
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        680
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        681
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        682
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        683
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        684
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        685
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        686
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        687
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        688
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        689
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        690
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.166666667
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        691
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        692
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        693
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        694
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        695
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.500000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        696
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        697
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        698
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        699
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        701
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        702
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        703
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        704
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        705
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        706
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        707
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        708
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        709
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        710
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.142857143
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        711
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.333333333
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        712
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        713
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        714
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        715
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        716
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        717
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        718
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        719
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        720
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        721
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        722
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        723
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        724
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        725
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        726
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        727
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        728
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        729
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        730
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        731
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        732
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.166666667
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        733
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        734
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        735
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        736
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        737
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        738
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        739
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        740
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        741
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        742
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        743
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        744
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        745
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        746
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        748
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        749
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        750
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        751
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        752
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        753
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        754
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        755
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.166666667
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        756
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        757
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        758
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        759
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        760
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        761
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.333333333
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        762
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        763
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        764
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        765
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        766
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        767
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        768
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        769
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        770
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        771
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        772
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        773
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        774
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        775
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        776
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        777
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        778
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        779
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        780
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        781
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        782
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        783
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.111111111
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        784
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        785
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        786
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        787
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        788
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        789
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        790
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        791
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        792
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        793
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        794
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        795
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        796
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        797
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        798
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        799
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        801
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        802
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        803
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        804
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        805
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        806
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        807
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        808
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        809
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        810
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        811
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        812
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        813
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        814
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        815
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        816
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        817
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        818
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        819
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.333333333
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        820
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        821
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        822
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        823
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.125000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        824
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        825
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        826
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        827
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        828
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        829
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        830
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        831
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        832
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        833
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        834
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.200000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        835
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        836
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        837
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        838
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        839
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        840
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        841
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        842
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        843
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        844
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        845
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        846
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        847
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        848
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        849
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        850
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        851
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.250000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        852
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.250000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        853
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        854
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        855
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.166666667
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        856
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        857
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        858
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        859
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        860
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        861
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        862
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        863
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        864
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        865
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        866
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        867
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        868
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        869
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        870
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        871
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        872
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        873
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        874
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        875
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        876
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        877
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        878
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        879
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        880
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        881
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        882
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        883
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        884
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        885
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        886
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        887
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        888
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        889
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        890
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        891
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.142857143
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        892
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        894
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        895
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        896
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        897
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        898
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        899
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        901
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        902
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        903
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        904
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        905
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        906
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        907
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        908
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        909
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        910
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        911
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        912
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        913
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        914
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        915
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        916
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        917
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        918
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        919
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        920
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        921
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        922
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        923
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        924
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        925
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        926
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        927
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        928
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        929
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        930
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        931
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        932
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        933
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        934
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        935
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        936
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        937
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        938
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        939
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        940
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        941
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        942
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        943
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        944
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        945
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        946
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        947
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        948
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        949
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        950
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        951
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        952
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        953
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        954
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        955
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        956
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        957
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        958
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        959
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        960
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        961
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        962
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        963
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        964
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        965
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        966
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        967
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        968
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        969
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        970
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        971
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        972
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        973
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        974
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        975
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        976
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        977
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        978
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        979
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        980
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        981
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        982
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        983
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        984
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        985
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        986
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        987
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        988
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        989
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        990
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        991
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        992
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        993
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        994
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        995
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        996
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        997
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        998
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                        999
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       1000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       1100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.002197802
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.002197802
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.002197802
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.002197802
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       1200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.002212389
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.002212389
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.002212389
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.002212389
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.002212389
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.002212389
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       1300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.002739726
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.002739726
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       1400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.002617801
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       1500
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.003086420
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.003086420
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.003086420
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.003086420
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.003086420
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       1600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.003831418
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.003831418
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       1700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.004115226
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       1800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.004761905
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.004761905
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       1900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.004651163
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       2000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       2100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.005154639
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       2200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.005813953
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       2300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       2400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.008403361
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       2500
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       2600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.009259259
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       2700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       2800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.010309278
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.010309278
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       2900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       3000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       3100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.012345679
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       3200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.011111111
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.011111111
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       3300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       3400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       3500
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       3600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.023809524
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.023809524
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       3700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       3800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       3900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.018518519
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       4000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       4100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       4200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.020833333
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       4300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       4400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       4500
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       4600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.030303030
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.030303030
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       4700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       4800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.025000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.025000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       4900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.031250000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       5000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       5100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       5200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       5300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       5400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       5500
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       5600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       5700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.045454545
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       5800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       5900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       6000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       6100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       6200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       6300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       6400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       6500
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       6600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       6700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       6800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       6900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       7000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       7100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       7200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       7300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       7400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       7500
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       7600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       7700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.090909091
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       7800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       7900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       8000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       8100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       8200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       8300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       8400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       8500
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       8600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       8700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       8800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       8900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       9000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       9100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       9200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       9300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       9400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       9500
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       9600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       9700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       9800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                       9900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      10000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.142857143
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      10100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      10200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      10300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      10400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      10500
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      10600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      10700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      10800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      10900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      11000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      11100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      11200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      11300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      11400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      11500
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      11600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      11700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      11800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      11900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      12000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      12100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      12200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      12300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      12400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      12500
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      12600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      12700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      12800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      12900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      13000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      13100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      13200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      13300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      13400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      13500
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      13600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.500000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      13700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      13800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      13900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      14000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      14100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      14200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      14300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      14400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      14500
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      14600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      14700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      14800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      14900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      15000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      15200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      15300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      15400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      15500
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      15600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      15700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      15800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      15900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      16100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      16200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      16300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      16400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      16500
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      16600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      16700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      16800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      16900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      17000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      17100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.200000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      17200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      17300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      17400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      17500
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      17600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      17800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      17900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      18000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      18100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      18200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      18300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      18400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      18700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      18900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      19100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      19200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      19400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      19800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      20200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      20300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      20500
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      20600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      20700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      20800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      20900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      21000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      21100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      21400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      21500
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      21700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      21800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      21900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      22000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      22100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      22200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      22300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      23000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      23100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      23300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      23500
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      23600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      23700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      23800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      23900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      24000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      24200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      24300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      24400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      24500
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      24800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      24900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      25000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      25100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      25200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      25300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      25700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      26200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      26300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      26400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      26600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      26900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      27000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      27300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      27400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      27700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      27900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      28200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      28300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      28600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      28900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      30000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      30200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      30400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      31400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      31600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      32200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      32600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      32700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      33100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      33900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      34900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      35100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      35300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      35800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      36100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      36200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      36700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      36800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      37400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      39200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      39400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      40100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      40400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      41200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      41600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      41700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      42200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      42600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      43100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      44700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      45400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      48800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      49000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      50200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      51900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      53100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      53700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      54300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      56400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      57600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      61500
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      61600
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      62300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      65300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      68300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      71800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      73100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      80400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      81200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      87000
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      93800
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                      97200
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                     104100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                     112500
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                     118700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                     144400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                     196700
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                     210300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                     227300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                     306100
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                     617900
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                     690400
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##                                                                                                                                                                                                   
## url                                                                                                                                                                                                     843300
##   http://mashable.com/2013/01/07/amazon-instant-video-browser/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/apple-40-billion-app-downloads/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/att-u-verse-apps/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/beewi-smart-toys/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/bodymedia-armbandgets-update/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/canon-poweshot-n/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/car-of-the-future-infographic/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/chuck-hagel-website/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/cosmic-events-doomsday/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/crayon-creatures/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/creature-cups/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/dad-jokes/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/downton-abbey-tumblrs/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/earth-size-planets-milky-way/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/echo-game/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/entrepreneur-trends-2013/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/facebook-sick-app/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/felt-audio-pulse-speaker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/ford-glympse/                                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/ftc-google-leaks/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/fujifilm-50x-superzoom/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/hillary-clinton-helmet/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/htc-q1/                                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/huawei-ascend-mate/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/iheartradio-app-perfect-for/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/intel-awesome-laptop/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/jobs-contently/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/land-a-job-at-spotify/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/lg-oled-tv-price/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/lionel-messi-fashion-moments/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/living-room-pinterest-contest/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/livio-connect-expands/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/magisto-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/07/man-instagram-images-blind/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/mcafee-spying/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/messi-year-all-goals/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/monster-ea-gaming-headphones/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/07/nectar-mobile-powe/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/07/nvidia-project-shield/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/nvidia-tegra-4/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/omron-fitness-monitors/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/                                                                                               0.000000000
##   http://mashable.com/2013/01/07/panasonic-second-screen/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/pantech-discover-att/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/papertab/                                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/philips-fidelio-soundbar/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/07/pitchfork-advance-album-stream/                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/polaroid-android-camera/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/07/power-matters-alliance-organization/                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/rage-comics-dying/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/reeddit-reddit/                                                                                                                                                   0.000000000
##   http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/samsung-mulit-view-tv/                                                                                                                                            0.000000000
##   http://mashable.com/2013/01/07/samsung-quad-core-tv/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/samsung-smart-hub/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/samsung-uhd-blu-ray/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/07/social-media-iran/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/stolen-iphone-dating/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/targus-touch-pen-windows-8/                                                                                                                                       0.000000000
##   http://mashable.com/2013/01/07/ticketmaster-inauguration/                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/07/top-twitter-pics-1-7/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/toshiba-4k-tv/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/07/traffic-signals-bugs/                                                                                                                                             0.000000000
##   http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/07/youtube-future-tv/                                                                                                                                                0.000000000
##   http://mashable.com/2013/01/07/youtube-vs-cable/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/08/lego-iphone-case/                                                                                                                                                 0.000000000
##   http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/                                                                                                                                  0.000000000
##   http://mashable.com/2013/01/08/personal-for-education/                                                                                                                                           0.000000000
##   http://mashable.com/2013/01/08/ro-marley-ces-2013/                                                                                                                                               0.000000000
##   http://mashable.com/2013/01/08/samsung-curved-oled/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/08/snow-dogs/                                                                                                                                                        0.000000000
##   http://mashable.com/2013/01/08/star-trek-into-darkness-app/                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/                                                                                                                     0.000000000
##   http://mashable.com/2013/01/08/t-mobile-data/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/08/t-mobile-value-plan/                                                                                                                                              0.000000000
##   http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/                                                                                                                                     0.000000000
##   http://mashable.com/2013/01/09/50-cent-ces/                                                                                                                                                      0.000000000
##   http://mashable.com/2013/01/09/amazon-predictions-2013/                                                                                                                                          0.000000000
##   http://mashable.com/2013/01/09/apple-phablet/                                                                                                                                                    0.000000000
##   http://mashable.com/2013/01/09/arrested-development-may/                                                                                                                                         0.000000000
##   http://mashable.com/2013/01/09/bad-instagram-filters/                                                                                                                                            0.000000000
##  [ reached getOption("max.print") -- omitted 39547 rows ]
## 
##          
## timedelta           4          23          41          45          47
##      mean 647.0000000 547.0000000 581.0000000 555.0000000 576.0000000
##      sd                                                              
##          
## timedelta          48          51          60          64          66
##      mean 547.0000000 554.0000000 550.5000000 561.5000000 547.0000000
##      sd                             6.3639610   7.7781746            
##          
## timedelta          70          80          82          84          86
##      mean 587.0000000 542.0000000 556.6666667 582.0000000 574.0000000
##      sd                             8.0829038                        
##          
## timedelta          87          88          90          91          95
##      mean 548.0000000 558.0000000 554.0000000 569.0000000 561.5000000
##      sd                 2.8284271                          10.6066017
##          
## timedelta          97          98          99         102         106
##      mean 587.0000000 588.0000000 581.0000000 567.0000000 582.0000000
##      sd                                                              
##          
## timedelta         109         111         116         119         123
##      mean 556.0000000 577.0000000 578.3333333 579.5000000 565.5000000
##      sd                            10.9696551   9.1923882   6.3639610
##          
## timedelta         127         129         130         134         135
##      mean 573.0000000 587.0000000 552.0000000 553.0000000 556.0000000
##      sd                                                              
##          
## timedelta         137         138         140         141         143
##      mean 553.0000000 584.0000000 559.5000000 575.0000000 575.0000000
##      sd                 4.2426407  20.5060967                        
##          
## timedelta         144         146         149         150         151
##      mean 556.0000000 568.0000000 546.0000000 586.0000000 570.0000000
##      sd                                                              
##          
## timedelta         154         158         160         162         163
##      mean 559.0000000 545.0000000 577.0000000 569.0000000 587.0000000
##      sd                                                              
##          
## timedelta         168         176         178         180         181
##      mean 558.0000000 584.0000000 583.0000000 542.0000000 561.5000000
##      sd                                                     9.1923882
##          
## timedelta         183         186         190         191         192
##      mean 549.0000000 553.0000000 578.5000000 585.0000000 549.0000000
##      sd                             7.7781746                        
##          
## timedelta         196         201         202         205         206
##      mean 574.0000000 580.0000000 559.0000000 576.6666667 557.0000000
##      sd                                        15.3731367            
##          
## timedelta         211         213         215         217         218
##      mean 581.0000000 557.0000000 585.5000000 659.5000000 581.0000000
##      sd     4.2426407   2.8284271   2.1213203 101.1162697   8.4852814
##          
## timedelta         221         223         224         226         228
##      mean 570.0000000 549.0000000 574.5000000 578.0000000 545.5000000
##      sd    19.7989899              19.0918831               0.7071068
##          
## timedelta         233         236         237         238         240
##      mean 582.5000000 551.0000000 570.6666667 548.0000000 582.0000000
##      sd     7.7781746              19.5533458                        
##          
## timedelta         241         245         246         248         250
##      mean 583.5000000 556.5000000 547.0000000 576.0000000 548.0000000
##      sd     0.7071068   3.5355339                                    
##          
## timedelta         251         256         258         261         262
##      mean 558.0000000 578.0000000 559.0000000 555.0000000 583.0000000
##      sd    14.1421356              18.3847763                        
##          
## timedelta         264         266         268         269         277
##      mean 562.0000000 546.0000000 566.0000000 555.0000000 546.0000000
##      sd                                                              
##          
## timedelta         278         279         280         285         286
##      mean 586.0000000 561.0000000 546.0000000 566.0000000 584.0000000
##      sd                                                              
##          
## timedelta         287         292         294         295         296
##      mean 559.0000000 555.0000000 710.0000000 566.0000000 545.0000000
##      sd                                                              
##          
## timedelta         300         301         302         305         308
##      mean 632.0000000 560.0000000 729.0000000 588.0000000 641.5000000
##      sd   118.7939392                                     122.3294731
##          
## timedelta         309         313         317         318         321
##      mean 575.0000000 562.0000000 568.0000000 630.0000000 547.0000000
##      sd                                       101.8233765            
##          
## timedelta         322         324         325         326         331
##      mean 587.0000000 567.0000000 545.0000000 706.0000000 584.0000000
##      sd                                                              
##          
## timedelta         336         339         340         341         342
##      mean 693.0000000 577.0000000 707.0000000 729.0000000 648.0000000
##      sd                                         0.0000000  96.1665222
##          
## timedelta         343         346         348         349         350
##      mean 566.0000000 577.0000000 628.0000000 710.0000000 657.0000000
##      sd    11.3137085  14.1421356 103.2375901             101.8233765
##          
## timedelta         354         356         357         358         365
##      mean 707.5000000 700.0000000 638.0000000 647.5000000 584.0000000
##      sd    20.5060967             101.8233765 105.3589104            
##          
## timedelta         366         368         369         371         373
##      mean 623.6666667 723.0000000 588.5000000 656.5000000 718.5000000
##      sd    66.1538611              20.5060967  82.7314934  14.8492424
##          
## timedelta         375         377         378         379         380
##      mean 704.0000000 637.0000000 576.0000000 675.0000000 707.0000000
##      sd    15.5563492 128.6934342                                    
##          
## timedelta         381         382         383         384         386
##      mean 581.0000000 713.5000000 567.0000000 675.0000000 699.5000000
##      sd                24.7487373                          10.6066017
##          
## timedelta         387         390         391         392         393
##      mean 584.0000000 638.5000000 596.0000000 638.5000000 564.3333333
##      sd                77.0746391              61.5182900  19.3993127
##          
## timedelta         395         396         397         398         399
##      mean 582.0000000 728.0000000 707.0000000 645.0000000 700.0000000
##      sd    31.1126984                          69.2964646   1.4142136
##          
## timedelta         400         401         402         403         404
##      mean 724.3333333 714.3333333 629.0000000 560.0000000 581.0000000
##      sd     9.0737717  14.9777613  93.3380951                        
##          
## timedelta         407         408         410         411         412
##      mean 688.0000000 585.5000000 639.5000000 559.0000000 680.0000000
##      sd                31.8198052  60.1040764              62.9126378
##          
## timedelta         413         414         416         417         419
##      mean 690.0000000 710.0000000 654.6000000 633.0000000 698.5000000
##      sd     4.2426407              60.8218711  83.8629835   4.9497475
##          
## timedelta         420         421         422         423         424
##      mean 542.0000000 563.0000000 707.0000000 723.0000000 700.0000000
##      sd                29.6984848               5.5677644            
##          
## timedelta         425         426         427         428         429
##      mean 621.3333333 695.0000000 728.0000000 708.0000000 656.6666667
##      sd    96.7591512                                      82.9538024
##          
## timedelta         430         431         432         434         435
##      mean 633.0000000 714.0000000 636.6666667 700.0000000 626.0000000
##      sd    93.3380951              81.3654308              73.5119038
##          
## timedelta         436         437         438         440         441
##      mean 642.2500000 577.6666667 707.5000000 661.6666667 719.0000000
##      sd    68.9655711  20.8406654  20.5060967  93.6286993  12.7279221
##          
## timedelta         444         445         446         447         448
##      mean 706.0000000 673.6666667 595.5000000 659.5000000 577.2500000
##      sd                85.8215202  13.4350288  77.0746391  14.3149106
##          
## timedelta         449         450         451         452         454
##      mean 596.0000000 715.0000000 647.6666667 546.0000000 663.3333333
##      sd                24.2487113  63.0026454              84.5004931
##          
## timedelta         455         456         458         459         460
##      mean 653.3333333 657.7500000 665.5000000 729.0000000 712.6666667
##      sd    94.0762102  60.8515954  81.3172798               8.3266640
##          
## timedelta         461         462         463         464         465
##      mean 561.0000000 713.6666667 669.0000000 577.0000000 720.0000000
##      sd    15.0996689  23.4378611  71.4352854                        
##          
## timedelta         466         467         468         469         471
##      mean 567.0000000 629.6666667 601.5000000 672.7500000 651.6666667
##      sd                68.9661753  86.5197473  61.6948134  84.8783443
##          
## timedelta         472         473         474         475         476
##      mean 633.0000000 679.5000000 729.0000000 651.0000000 541.0000000
##      sd    83.4386002  64.5471404              65.1766829            
##          
## timedelta         477         478         480         482         483
##      mean 603.0000000 590.0000000 727.0000000 693.5000000 644.5000000
##      sd                21.2132034   5.6568542  12.0208153 109.6015511
##          
## timedelta         484         485         486         488         489
##      mean 676.5000000 682.0000000 583.0000000 693.0000000 586.5000000
##      sd    79.5843368                          19.7989899   2.1213203
##          
## timedelta         490         492         493         494         495
##      mean 636.0000000 646.0000000 637.3333333 651.3333333 646.2500000
##      sd                59.7745765  79.1538586  71.1430484  73.5589333
##          
## timedelta         496         497         498         500         501
##      mean 635.0000000 554.5000000 675.8000000 648.6666667 605.0000000
##      sd    45.2548340   9.1923882  57.9327196  74.4132605            
##          
## timedelta         502         503         504         505         506
##      mean 702.0000000 624.6666667 684.5000000 648.5000000 617.0000000
##      sd                82.6579296  68.1689079  77.0302971  61.2780548
##          
## timedelta         507         508         510         511         512
##      mean 720.5000000 715.0000000 706.0000000 649.6666667 584.0000000
##      sd    14.8492424              11.7898261  82.7183978            
##          
## timedelta         513         514         515         516         517
##      mean 722.0000000 723.0000000 704.5000000 573.7500000 567.0000000
##      sd     9.8994949              13.4350288  20.0893836            
##          
## timedelta         518         519         520         521         522
##      mean 636.5000000 603.0000000 693.0000000 713.0000000 673.0000000
##      sd    86.3423419                                      57.2625532
##          
## timedelta         523         525         526         527         528
##      mean 628.6666667 564.5000000 656.7500000 656.5000000 612.6666667
##      sd    63.3745480   6.3639610  44.4025149  69.8992132  17.6162803
##          
## timedelta         529         530         531         532         533
##      mean 678.2500000 604.0000000 631.8000000 671.2500000 624.8000000
##      sd    79.6591698              58.0921681  83.5518801  77.2476537
##          
## timedelta         534         535         536         537         538
##      mean 639.0000000 602.5000000 690.0000000 629.0000000 625.4000000
##      sd    98.9949494  74.0112604  57.7408001  83.3586628  73.6498473
##          
## timedelta         539         541         542         544         545
##      mean 623.6666667 640.5000000 631.0000000 652.3333333 712.5000000
##      sd    61.5006775  53.0330086  57.2538208  84.2990708  26.1629509
##          
## timedelta         546         547         548         549         550
##      mean 654.0000000 589.0000000 606.6000000 591.2500000 703.5000000
##      sd    73.5391052              61.1089192  12.0104121   0.7071068
##          
## timedelta         552         553         555         556         557
##      mean 590.0000000 593.0000000 700.0000000 671.3333333 687.0000000
##      sd    19.7989899  11.3137085  19.7989899  89.8461648            
##          
## timedelta         558         559         560         561         562
##      mean 686.0000000 660.0000000 717.6666667 658.0000000 549.0000000
##      sd                85.7379729   3.7859389  87.6812409            
##          
## timedelta         563         564         565         566         567
##      mean 599.0000000 624.2500000 609.2500000 620.8333333 597.0000000
##      sd     4.2426407  85.3009379  69.7680681  59.5496991            
##          
## timedelta         568         569         570         571         572
##      mean 705.5000000 652.5000000 587.0000000 617.6666667 643.0000000
##      sd    24.7487373 106.7731240  48.1352262  77.6938436  74.9533188
##          
## timedelta         573         574         575         576         577
##      mean 731.0000000 670.8000000 670.4000000 616.0000000 649.5000000
##      sd                43.2400278  78.4907638  47.0584743  75.6769450
##          
## timedelta         578         579         580         581         582
##      mean 636.2500000 593.4000000 549.0000000 620.5000000 615.6666667
##      sd    68.9945650  59.0237240              79.7339326  97.2899447
##          
## timedelta         583         584         585         586         588
##      mean 662.3333333 601.6666667 591.6000000 610.8000000 571.5000000
##      sd    87.8085038   7.0945989  78.4142844  64.1147409  14.8492424
##          
## timedelta         589         590         591         592         593
##      mean 699.0000000 615.6666667 614.0000000 609.0000000 690.2000000
##      sd    10.8857705  82.1360660  68.8222348              49.2463197
##          
## timedelta         594         595         596         597         598
##      mean 699.5000000 688.0000000 573.3333333 638.6666667 688.6666667
##      sd    10.6066017              24.5424802  80.8723274  73.3234842
##          
## timedelta         599         600         601         602         603
##      mean 618.7500000 577.0000000 703.0000000 619.1666667 606.0000000
##      sd    45.3164797                          58.8639675  94.4616324
##          
## timedelta         604         605         606         607         608
##      mean 611.5000000 585.7500000 651.0000000 686.0000000 652.6666667
##      sd    98.2878426   8.7321246  74.8776780              55.0121199
##          
## timedelta         609         610         612         613         614
##      mean 636.5000000 618.0000000 632.1428571 565.0000000 615.8333333
##      sd    94.0452019  89.8164796  52.2890319  33.9411255  83.8365473
##          
## timedelta         615         616         618         619         620
##      mean 722.0000000 595.5000000 630.5000000 548.0000000 599.5000000
##      sd                20.5060967  67.6091710   9.8994949  47.1624851
##          
## timedelta         621         622         623         624         625
##      mean 639.0000000 644.5000000 652.0000000 599.7500000 598.0000000
##      sd    72.5993572 116.6726189  72.3014523  63.5052491            
##          
## timedelta         626         627         628         629         630
##      mean 667.2500000 611.0000000 585.6666667 612.0000000 636.0000000
##      sd    46.0461725               7.3711148  60.6052803  81.5046011
##          
## timedelta         631         632         633         634         635
##      mean 650.6666667 665.6666667 630.0000000 683.0000000 661.2857143
##      sd    72.8171225  71.9328390  97.5807358  12.7279221  68.9364787
##          
## timedelta         636         637         638         639         640
##      mean 716.0000000 572.5000000 695.0000000 614.6250000 629.6000000
##      sd    11.3137085  24.7487373  38.1837662  65.9717201  52.4623675
##          
## timedelta         641         642         643         644         645
##      mean 581.0000000 648.5000000 607.5000000 620.3333333 665.5000000
##      sd                54.0154299  61.7440955  75.5071741  58.5516866
##          
## timedelta         646         647         648         649         650
##      mean 573.0000000 605.0000000 631.4000000 661.5000000 608.5000000
##      sd    25.5147016              56.5092913  66.8655367  38.5183939
##          
## timedelta         651         652         653         654         655
##      mean 636.5000000 603.0000000 578.0000000 641.3333333 701.5000000
##      sd    72.9131904                          83.1644956   3.5355339
##          
## timedelta         656         657         658         659         660
##      mean 614.1666667 644.1250000 615.2000000 647.3333333 610.5000000
##      sd    55.7975507  82.2199793  88.8042792  59.0705793  78.6066155
##          
## timedelta         661         662         663         664         665
##      mean 593.8000000 587.0000000 636.3333333 578.0000000 555.0000000
##      sd    71.4331856   2.6457513  90.1184406  36.7695526            
##          
## timedelta         666         667         668         669         670
##      mean 639.0000000 621.3333333 698.0000000 587.0000000 635.5000000
##      sd                31.7700068  22.6274170  15.5563492  61.0491605
##          
## timedelta         671         672         673         674         675
##      mean 641.0000000 702.3333333 671.6666667 680.3333333 609.8000000
##      sd    78.2432106  24.4199372  77.0216420  13.0128142  39.6635853
##          
## timedelta         676         677         678         679         680
##      mean 678.0000000 597.3333333 662.6666667 629.5000000 646.3333333
##      sd    62.9126378   4.9328829  47.5114021  34.9332697  67.8847062
##          
## timedelta         681         682         683         684         685
##      mean 630.5714286 566.5000000 633.7500000 596.5000000 705.5000000
##      sd    66.5879297  19.2743353  50.9141434   9.1923882  24.7487373
##          
## timedelta         686         687         688         689         690
##      mean 631.2500000 627.5000000 623.3333333 616.0000000 631.8333333
##      sd    51.8997431  77.1859227  75.1620472  69.4190176  82.9732889
##          
## timedelta         691         692         693         694         695
##      mean 672.0000000 566.7500000 627.6666667 638.7500000 696.0000000
##      sd    58.9660920  20.6135069  69.9237680  53.4875375  49.4974747
##          
## timedelta         696         697         698         699         700
##      mean 632.5000000 624.3333333 643.7142857 601.0000000 574.2500000
##      sd    76.7441637  71.4306190  64.7346231  47.6235236  25.4214476
##          
## timedelta         701         702         703         704         705
##      mean 624.4444444 582.5000000 619.0000000 644.6666667 671.2500000
##      sd    61.5956799  28.9913780  88.4759854  71.2203155  79.3152991
##          
## timedelta         706         707         708         709         710
##      mean 704.3333333 612.0000000 637.5000000 628.3333333 660.0000000
##      sd     9.8149546  67.4882706  60.1040764  42.1939964  64.9384324
##          
## timedelta         711         712         713         714         715
##      mean 681.3333333 622.0000000 563.7500000 584.0000000 652.2500000
##      sd    50.0033332  63.1770000  22.9110599  17.3493516  84.9995098
##          
## timedelta         716         717         718         719         720
##      mean 618.6666667 670.2000000 643.2500000 678.3333333 662.2000000
##      sd    58.7905888  61.9491727  89.2799903   6.5064071  53.9323651
##          
## timedelta         721         722         723         724         725
##      mean 720.0000000 605.5000000 693.0000000 567.0000000 633.8000000
##      sd                55.8614357                          69.5212198
##          
## timedelta         726         727         728         729         730
##      mean 642.8333333 644.8333333 628.5000000 603.6000000 619.0000000
##      sd    46.0452676  78.6674435  62.0701216  54.9071944  73.4493022
##          
## timedelta         731         732         733         734         735
##      mean 645.5000000 611.1666667 571.8333333 604.5000000 629.5714286
##      sd    67.2926445  61.4147105  13.9630465  74.2462120  75.6413845
##          
## timedelta         736         737         738         739         740
##      mean 653.0000000 664.6666667 587.0000000 637.0000000 627.5000000
##      sd    56.5685425  83.5304336  49.2950302  67.8822510  69.3361378
##          
## timedelta         741         742         743         744         745
##      mean 641.0000000 678.1428571 558.5000000 625.4000000 618.8333333
##      sd    65.5469298  51.0993430  16.2634560  77.9570395  47.7343343
##          
## timedelta         746         748         749         750         751
##      mean 589.6666667 591.0000000 571.5000000 600.5714286 645.1250000
##      sd    53.5562010  82.2860863   3.5355339  47.8847824  58.4109518
##          
## timedelta         752         753         754         755         756
##      mean 610.5555556 629.8000000 572.6000000 640.1666667 648.2000000
##      sd    68.9385797  51.0705395  28.9274956  80.8886065  86.8832550
##          
## timedelta         757         758         759         760         761
##      mean 645.5000000 683.5000000 621.0000000 658.0000000 702.0000000
##      sd    59.2106409  34.6482323  70.9788701  44.6989933  48.5077313
##          
## timedelta         762         763         764         765         766
##      mean 644.0000000 600.4000000 598.0000000 683.7500000 675.0000000
##      sd   118.7939392  65.2403250  64.9307323  16.5403547            
##          
## timedelta         767         768         769         770         771
##      mean 615.5000000 686.5000000 619.7500000 598.7500000 619.2000000
##      sd    71.0234703  32.1091887  68.4756648  55.1747225  61.7308675
##          
## timedelta         772         773         774         775         776
##      mean 613.5000000 597.2500000 612.4000000 631.4285714 654.0000000
##      sd    54.4472222  68.0312428  64.5817312  75.7822696  79.1959595
##          
## timedelta         777         778         779         780         781
##      mean 606.5000000 594.0000000 643.5000000 670.0000000 646.0000000
##      sd    65.7609307              92.6309883                        
##          
## timedelta         782         783         784         785         786
##      mean 629.5000000 634.5555556 617.5000000 650.5000000 662.7500000
##      sd    69.7829970  64.5660730  61.5182900  64.7482303  64.8761641
##          
## timedelta         787         788         789         790         791
##      mean 604.8000000 572.6666667 606.0000000 656.5555556 635.0000000
##      sd    73.9134629  42.7707065  43.1914343  66.1761118  53.4976635
##          
## timedelta         792         793         794         795         796
##      mean 607.7500000 678.0000000 644.7142857 629.0000000 591.0000000
##      sd    62.8870870              58.0020525  64.6567862  19.7989899
##          
## timedelta         797         798         799         800         801
##      mean 638.0000000 586.2857143 666.2500000 641.2000000 662.6666667
##      sd    66.2042295  24.7972733  60.3179078  51.7029980  63.5164021
##          
## timedelta         802         803         804         805         806
##      mean 665.8571429 648.0000000 624.0000000 615.1666667 627.2500000
##      sd    60.8917854  53.7401154  67.2309453  70.3801582  45.1912602
##          
## timedelta         807         808         809         810         811
##      mean 656.5000000 596.1666667 607.1666667 609.0000000 635.6666667
##      sd    66.3450576  54.3375254  53.6895396  39.0448460  82.8025764
##          
## timedelta         812         813         814         815         816
##      mean 634.7500000 579.5000000 607.5000000 599.5000000 655.8000000
##      sd    39.2205303  26.1629509  23.3345238  46.1916298  65.1667093
##          
## timedelta         817         818         819         820         821
##      mean 618.2000000 620.4000000 633.6666667 645.5000000 592.4285714
##      sd    61.1857827  44.8642397  87.3746722  82.7314934  38.4571499
##          
## timedelta         822         823         824         825         826
##      mean 638.2000000 646.0000000 645.0000000 647.1000000 576.0000000
##      sd    52.6849125  60.5262635  62.7893303  65.9249573  31.1126984
##          
## timedelta         827         828         829         830         831
##      mean 653.6666667 641.5000000 590.0000000 610.0000000 600.1428571
##      sd    56.7755816  50.2095608  67.3572565  63.1743619  52.7555007
##          
## timedelta         832         833         834         835         836
##      mean 634.0000000 620.1428571 648.2000000 693.5000000 656.7500000
##      sd    69.8627225  70.6126253  58.4183190  50.5074252  51.9895823
##          
## timedelta         837         838         839         840         841
##      mean 662.2000000 603.4285714 629.8000000 653.2000000 561.0000000
##      sd    58.7256332  48.5244170  57.8636328  40.0836625  12.7279221
##          
## timedelta         842         843         844         845         846
##      mean 643.0000000 599.4000000 606.4000000 614.5714286 590.7500000
##      sd    55.1543289  54.0629263  65.8885423  47.4406898  51.1688382
##          
## timedelta         847         848         849         850         851
##      mean 722.0000000 562.0000000 683.0000000 628.6666667 636.2500000
##      sd                11.3137085  33.2966465  71.5005827  91.1751977
##          
## timedelta         852         853         854         855         856
##      mean 641.7500000 656.6666667 626.0000000 655.0000000 655.8333333
##      sd    75.7292326  88.0473358  56.2909110  73.8241153  57.6382396
##          
## timedelta         857         858         859         860         861
##      mean 619.4285714 647.0000000 603.5000000 644.8000000 620.3333333
##      sd    71.4746042  61.1173734  58.9160420  52.5138077  27.4286954
##          
## timedelta         862         863         864         865         866
##      mean 622.0000000 596.4000000 647.5000000 639.0000000 717.6666667
##      sd    38.6910842  68.5696726  63.9210450              10.5987421
##          
## timedelta         867         868         869         870         871
##      mean 649.2500000 628.2000000 613.5000000 638.2500000 613.0000000
##      sd    46.0099627  22.0045450  60.4731345  63.1948046  24.8092725
##          
## timedelta         872         873         874         875         876
##      mean 627.8333333 622.6000000 637.2000000 651.0000000 636.2500000
##      sd    62.3647871  42.0392674  67.3550295  98.9949494  76.3211417
##          
## timedelta         877         878         879         880         881
##      mean 635.7500000 588.2857143 603.0000000 620.1428571 647.5000000
##      sd    44.3273806  32.1647544              62.1380951  74.2462120
##          
## timedelta         882         883         884         885         886
##      mean 599.0000000 613.6666667 660.8000000 565.6666667 706.2500000
##      sd    40.0416450  53.4633831  60.3796323  11.0604400   6.5000000
##          
## timedelta         887         888         889         890         891
##      mean 620.5000000 586.0000000 610.1666667 610.0000000 631.8571429
##      sd    49.4883825  36.7695526  62.2235218  42.9231872  50.6505300
##          
## timedelta         892         894         895         896         897
##      mean 590.4000000 623.0000000 629.2857143 625.0000000 615.3333333
##      sd    42.9045452  66.1551207  41.9671073  56.1693867  60.3517467
##          
## timedelta         898         899         900         901         902
##      mean 591.5000000 652.1666667 659.5714286 626.6666667 672.6666667
##      sd    70.7931258  30.7923151  69.7539895  36.5285277  36.9459064
##          
## timedelta         903         904         905         906         907
##      mean 613.6666667 611.4000000 609.6000000 642.5000000 655.8750000
##      sd    67.7190274  70.5003546  38.8818724  34.6482323  48.1676759
##          
## timedelta         908         909         910         911         912
##      mean 599.5000000 674.5714286 613.5000000 589.7500000 661.1666667
##      sd    61.5182900  62.4229048  70.3017307  64.1216292  50.4754066
##          
## timedelta         913         914         915         916         917
##      mean 622.0000000 629.4285714 647.4000000 646.1428571 628.6666667
##      sd    43.8368186  65.9162528  68.4419462  50.1379051  62.5129320
##          
## timedelta         918         919         920         921         922
##      mean 604.1111111 641.8000000 624.6666667 657.5000000 638.3333333
##      sd    35.1441476  65.3429415  49.5210393  78.4888527  60.1586791
##          
## timedelta         923         924         925         926         927
##      mean 659.2500000 616.6250000 580.0000000 610.8000000 624.0000000
##      sd    42.4057779  71.3521198  15.7162336  47.8717035  26.8700577
##          
## timedelta         928         929         930         931         932
##      mean 615.4000000 572.0000000 619.1666667 713.0000000 598.3333333
##      sd    63.8693980  33.9411255  69.7808474              28.5365263
##          
## timedelta         933         934         935         936         937
##      mean 661.5000000 640.0000000 637.0000000 662.0000000 649.6666667
##      sd    78.8688785  37.1860189  78.3134727  53.5630470  52.7585696
##          
## timedelta         938         939         940         941         942
##      mean 644.5000000 643.1000000 636.2000000 664.0000000 568.6000000
##      sd   109.6015511  53.6437839  58.6489557              38.5331027
##          
## timedelta         943         944         945         946         947
##      mean 617.0000000 652.5000000 595.3333333 655.0000000 638.0000000
##      sd    48.8773976  21.2994523  31.2143130  21.4196172  62.9338277
##          
## timedelta         948         949         950         951         952
##      mean 680.0000000 687.0000000 630.1428571 632.7142857 638.6000000
##      sd                27.7938842  64.5559927  53.1749135  61.7559714
##          
## timedelta         953         954         955         956         957
##      mean 605.2857143 634.4000000 609.0000000 658.8333333 636.0000000
##      sd    56.7089478  45.3795108  43.8634244  56.7747009  77.2614609
##          
## timedelta         958         959         960         961         962
##      mean 617.0000000 627.7500000 605.2500000 600.0000000 635.7142857
##      sd    97.8621479  22.5148099  61.8405207  53.7401154  52.0407350
##          
## timedelta         963         964         965         966         967
##      mean 621.7500000 613.5000000 645.0000000 586.5000000 636.7500000
##      sd    59.1178202  34.9671274  25.5212330  46.1031452  50.3148421
##          
## timedelta         968         969         970         971         972
##      mean 616.5000000 644.8333333 616.1428571 650.5000000 645.7142857
##      sd    75.6681351  54.9342031  53.3898510  72.3180475  66.8573464
##          
## timedelta         973         974         975         976         977
##      mean 645.0000000 599.5000000 609.0000000 644.3333333 648.0000000
##      sd    29.3052896  74.2462120              41.1015004  34.3947670
##          
## timedelta         978         979         980         981         982
##      mean 617.2000000 668.0000000 622.0000000 610.3333333 623.0000000
##      sd    66.0318105  44.3255006  68.9105701  67.7224729  84.8528137
##          
## timedelta         983         984         985         986         987
##      mean 641.1250000 617.6666667 658.3333333 598.5000000 607.2857143
##      sd    69.5401991  53.7946714   5.5075705  47.7249061  66.0850822
##          
## timedelta         988         989         990         991         992
##      mean 568.0000000 646.2000000 635.2500000 639.1428571 635.6250000
##      sd    19.7989899  64.2432876  53.8934133  63.7401720  67.3942293
##          
## timedelta         993         994         995         996         997
##      mean 610.0000000 628.2000000 610.5000000 588.0000000 642.0000000
##      sd    16.9705627  44.6172612  12.0208153              64.5832796
##          
## timedelta         998         999        1000        1100        1200
##      mean 657.3636364 615.5000000 642.2837209 641.2967033 640.5243363
##      sd    53.9245264  68.9081514  56.0730370  54.8360983  54.5745637
##          
## timedelta        1300        1400        1500        1600        1700
##      mean 644.8191781 638.8376963 646.3580247 646.2490421 650.9711934
##      sd    51.5858419  50.3584510  52.6358619  53.7665471  51.1424359
##          
## timedelta        1800        1900        2000        2100        2200
##      mean 647.0333333 649.0837209 646.0107527 649.7731959 645.1395349
##      sd    48.4477110  52.5730686  52.1197155  50.5377313  52.8655279
##          
## timedelta        2300        2400        2500        2600        2700
##      mean 645.5661765 646.6722689 647.5666667 642.0740741 641.3596491
##      sd    51.5018449  53.1622252  53.9300408  50.2968206  56.3601138
##          
## timedelta        2800        2900        3000        3100        3200
##      mean 640.8659794 642.4653465 643.9125000 649.5679012 646.1222222
##      sd    53.7712417  50.5013989  51.8940483  51.4698791  54.7488295
##          
## timedelta        3300        3400        3500        3600        3700
##      mean 635.9500000 642.9250000 636.1639344 634.4523810 630.0000000
##      sd    49.4191430  59.5031698  52.4087080  52.2396926  52.1207389
##          
## timedelta        3800        3900        4000        4100        4200
##      mean 647.8367347 634.9074074 631.9428571 632.9767442 633.7083333
##      sd    53.0366803  51.9416467  51.4112272  60.0410528  54.0523617
##          
## timedelta        4300        4400        4500        4600        4700
##      mean 644.2051282 656.6111111 636.5348837 635.3030303 650.8076923
##      sd    53.2146495  55.9812610  53.2041660  56.3612704  49.8598189
##          
## timedelta        4800        4900        5000        5100        5200
##      mean 633.0500000 646.5000000 634.0967742 626.0000000 634.3103448
##      sd    64.4714009  46.9378450  54.5272744  58.4386125  57.9871312
##          
## timedelta        5300        5400        5500        5600        5700
##      mean 624.3043478 647.9523810 637.5238095 664.4705882 643.4090909
##      sd    61.3858399  51.0768795  59.5286646  56.0893457  66.8271823
##          
## timedelta        5800        5900        6000        6100        6200
##      mean 635.0000000 643.3076923 650.2272727 637.7777778 637.9411765
##      sd    61.8128104  58.7797933  59.4810348  54.7728524  33.2612210
##          
## timedelta        6300        6400        6500        6600        6700
##      mean 640.4583333 659.2941176 637.3478261 624.4117647 640.3076923
##      sd    49.3540705  35.5681822  53.6822374  57.3258873  56.9069191
##          
## timedelta        6800        6900        7000        7100        7200
##      mean 624.5000000 634.7222222 637.1250000 642.7500000 622.7142857
##      sd    54.8160560  47.3967057  51.3515544  56.8044893  63.4549247
##          
## timedelta        7300        7400        7500        7600        7700
##      mean 641.7692308 650.3333333 643.1250000 625.3636364 656.8181818
##      sd    47.6045408  40.8641940  48.2447258  51.1962357  53.5589734
##          
## timedelta        7800        7900        8000        8100        8200
##      mean 618.6923077 639.4000000 628.5833333 658.5000000 651.6666667
##      sd    49.3007515  49.1148314  55.3771504  54.6549784  62.6178888
##          
## timedelta        8300        8400        8500        8600        8700
##      mean 669.5000000 602.7142857 634.0000000 663.1666667 643.8571429
##      sd    51.5548252  28.5757140  58.4494083  28.1383487  54.0198376
##          
## timedelta        8800        8900        9000        9100        9200
##      mean 609.0000000 643.4000000 618.3333333 652.3333333 652.4000000
##      sd    43.7645214  68.9405541  32.3584095  57.5108685  52.2987147
##          
## timedelta        9300        9400        9500        9600        9700
##      mean 626.8000000 618.0000000 607.2857143 645.5000000 654.0000000
##      sd    63.9155693  51.3976097  44.2632816  47.0070917  53.5180513
##          
## timedelta        9800        9900       10000       10100       10200
##      mean 647.3333333 632.7500000 631.8571429 636.2000000 645.2500000
##      sd    58.5277712  48.9719307  69.0758727  54.8971766  63.1737023
##          
## timedelta       10300       10400       10500       10600       10700
##      mean 613.8333333 665.3333333 633.0000000 648.7500000 637.6000000
##      sd    62.4737278  69.2781832  83.4386002  24.6098122  55.4661058
##          
## timedelta       10800       10900       11000       11100       11200
##      mean 682.1666667 636.2500000 631.8000000 650.0000000 669.0000000
##      sd    25.4434012  51.6421985  50.4003968  44.0616451   4.2426407
##          
## timedelta       11300       11400       11500       11600       11700
##      mean 629.3333333 681.3333333 646.5000000 636.0000000 636.6250000
##      sd    67.4190873  54.3016267  26.1629509              43.8827578
##          
## timedelta       11800       11900       12000       12100       12200
##      mean 644.2500000 673.6666667 651.3333333 649.6666667 584.0000000
##      sd    88.8946005  41.0398181  52.1638444  79.2548632  39.5979797
##          
## timedelta       12300       12400       12500       12600       12700
##      mean 650.5555556 613.8333333 645.0000000 634.0000000 605.5000000
##      sd    48.8700090  52.6703585  42.5029411  22.6274170  14.8492424
##          
## timedelta       12800       12900       13000       13100       13200
##      mean 658.0000000 639.0000000 657.0000000 557.0000000 653.5000000
##      sd    33.8919853  94.7523087  50.4446892              54.4472222
##          
## timedelta       13300       13400       13500       13600       13700
##      mean 669.3333333 616.3333333 652.0000000 705.5000000 610.7500000
##      sd     5.5075705  43.6501241  62.2253967  36.0624458  36.5820994
##          
## timedelta       13800       13900       14000       14100       14200
##      mean 670.0000000 610.4285714 627.0000000 636.0000000 675.0000000
##      sd    62.2253967  60.8737961                                    
##          
## timedelta       14300       14400       14500       14600       14700
##      mean 671.2000000 677.0000000 628.5000000 548.0000000 643.2500000
##      sd    39.2644878  25.7293607  69.0724258              43.1383433
##          
## timedelta       14800       14900       15000       15200       15300
##      mean 627.5000000 631.5000000 604.2500000 638.0000000 635.5000000
##      sd    57.8071507  28.9913780  53.8044298  48.4217582  67.1751442
##          
## timedelta       15400       15500       15600       15700       15800
##      mean 626.2500000 622.0000000 652.5000000 660.7500000 662.0000000
##      sd    50.4008928              58.6898628  53.8787218  83.4386002
##          
## timedelta       15900       16100       16200       16300       16400
##      mean 635.5000000 609.6666667 632.0000000 602.5000000 634.5000000
##      sd    21.9203102  48.6860692  39.3869691  34.8568501  23.3345238
##          
## timedelta       16500       16600       16700       16800       16900
##      mean 706.5000000 672.2500000 666.0000000 697.0000000 660.0000000
##      sd     0.7071068  27.8013789  61.2862138   8.7177979  11.3137085
##          
## timedelta       17000       17100       17200       17300       17400
##      mean 610.0000000 666.2000000 665.0000000 714.0000000 569.0000000
##      sd                62.3634508              11.3137085            
##          
## timedelta       17500       17600       17800       17900       18000
##      mean 680.5000000 656.3333333 678.0000000 593.0000000 706.5000000
##      sd    55.8614357  53.4259612  11.3137085  38.4317577  28.9913780
##          
## timedelta       18100       18200       18300       18400       18700
##      mean 670.3333333 571.5000000 659.0000000 650.2000000 640.0000000
##      sd    48.0138869   7.7781746              46.2947081            
##          
## timedelta       18900       19100       19200       19400       19800
##      mean 547.0000000 615.0000000 692.0000000 729.0000000 708.5000000
##      sd                                                    26.1629509
##          
## timedelta       20200       20300       20500       20600       20700
##      mean 666.5000000 612.0000000 622.0000000 617.5000000 635.5000000
##      sd    10.6066017                          47.3761543  41.7193001
##          
## timedelta       20800       20900       21000       21100       21400
##      mean 655.0000000 618.6666667 596.0000000 678.0000000 670.0000000
##      sd    33.9411255  43.5583899                          16.9705627
##          
## timedelta       21500       21700       21800       21900       22000
##      mean 628.0000000 642.5000000 668.0000000 672.0000000 686.0000000
##      sd    53.7401154  57.2756493                          42.4264069
##          
## timedelta       22100       22200       22300       23000       23100
##      mean 625.5000000 666.0000000 654.0000000 584.0000000 595.0000000
##      sd    44.5477272              14.7309199                        
##          
## timedelta       23300       23500       23600       23700       23800
##      mean 567.0000000 644.6666667 666.0000000 645.0000000 581.0000000
##      sd                13.0511813              62.2253967            
##          
## timedelta       23900       24000       24200       24300       24400
##      mean 597.0000000 599.0000000 576.0000000 667.0000000 623.0000000
##      sd                                                    39.5979797
##          
## timedelta       24500       24800       24900       25000       25100
##      mean 552.3333333 636.0000000 643.0000000 617.0000000 603.0000000
##      sd     1.1547005                                                
##          
## timedelta       25200       25300       25700       26200       26300
##      mean 646.0000000 670.0000000 612.0000000 546.0000000 559.0000000
##      sd    87.8407650  29.6984848                                    
##          
## timedelta       26400       26600       26900       27000       27300
##      mean 658.0000000 610.0000000 680.0000000 602.5000000 681.0000000
##      sd    30.3479818                           4.9497475   8.4852814
##          
## timedelta       27400       27700       27900       28200       28300
##      mean 696.0000000 623.0000000 681.0000000 617.0000000 661.0000000
##      sd                43.8406204              63.6474666            
##          
## timedelta       28600       28900       30000       30200       30400
##      mean 584.0000000 612.0000000 712.0000000 660.5000000 569.0000000
##      sd                                        70.0035713            
##          
## timedelta       31400       31600       32200       32600       32700
##      mean 646.0000000 541.0000000 657.0000000 639.0000000 689.0000000
##      sd                                                              
##          
## timedelta       33100       33900       34900       35100       35300
##      mean 725.0000000 664.0000000 669.0000000 677.0000000 548.0000000
##      sd                                                              
##          
## timedelta       35800       36100       36200       36700       36800
##      mean 676.0000000 546.0000000 660.3333333 664.0000000 607.0000000
##      sd     5.6568542              11.6761866                        
##          
## timedelta       37400       39200       39400       40100       40400
##      mean 727.0000000 715.0000000 724.0000000 706.0000000 624.5000000
##      sd                                                    92.6309883
##          
## timedelta       41200       41600       41700       42200       42600
##      mean 597.0000000 700.0000000 618.0000000 611.0000000 570.0000000
##      sd                                                              
##          
## timedelta       43100       44700       45400       48800       49000
##      mean 545.0000000 668.0000000 602.0000000 577.0000000 653.0000000
##      sd                                                              
##          
## timedelta       50200       51900       53100       53700       54300
##      mean 612.0000000 722.0000000 679.0000000 665.0000000 556.0000000
##      sd    25.4558441                                                
##          
## timedelta       56400       57600       61500       61600       62300
##      mean 545.0000000 682.0000000 610.0000000 591.0000000 667.0000000
##      sd                                                              
##          
## timedelta       65300       68300       71800       73100       80400
##      mean 655.0000000 649.0000000 666.0000000 589.0000000 686.0000000
##      sd                                                              
##          
## timedelta       81200       87000       93800       97200      104100
##      mean 576.0000000 614.0000000 625.0000000 596.0000000 552.0000000
##      sd                                                              
##          
## timedelta      112500      118700      144400      196700      210300
##      mean 630.0000000 580.0000000 677.0000000 549.0000000 545.0000000
##      sd                                                              
##          
## timedelta      227300      306100      617900      690400      843300
##      mean 679.0000000 651.0000000 677.0000000 633.0000000 554.0000000
##      sd                                                              
## 
##               
## n_tokens_title          4         23         41         45         47
##           mean  5.0000000  9.0000000  8.0000000  6.0000000  8.0000000
##           sd                                                         
##               
## n_tokens_title         48         51         60         64         66
##           mean  9.0000000 13.0000000  9.5000000  9.0000000  9.0000000
##           sd                          0.7071068  0.0000000           
##               
## n_tokens_title         70         80         82         84         86
##           mean  8.0000000  8.0000000  8.0000000  8.0000000  9.0000000
##           sd                          1.0000000                      
##               
## n_tokens_title         87         88         90         91         95
##           mean  8.0000000 10.0000000 11.0000000  9.0000000  9.0000000
##           sd               1.4142136                        1.4142136
##               
## n_tokens_title         97         98         99        102        106
##           mean 11.0000000 11.0000000 10.0000000  7.0000000  8.0000000
##           sd                                                         
##               
## n_tokens_title        109        111        116        119        123
##           mean  8.0000000 12.0000000  8.6666667 10.5000000  8.5000000
##           sd                          1.1547005  0.7071068  0.7071068
##               
## n_tokens_title        127        129        130        134        135
##           mean  6.0000000 13.0000000  9.0000000 10.0000000 11.0000000
##           sd                                                         
##               
## n_tokens_title        137        138        140        141        143
##           mean 10.0000000 13.0000000 10.0000000 13.0000000  9.0000000
##           sd               0.0000000  0.0000000                      
##               
## n_tokens_title        144        146        149        150        151
##           mean  7.0000000 10.0000000  8.0000000  8.0000000 10.0000000
##           sd                                                         
##               
## n_tokens_title        154        158        160        162        163
##           mean  7.0000000  9.0000000  7.0000000 10.0000000  6.0000000
##           sd                                                         
##               
## n_tokens_title        168        176        178        180        181
##           mean 11.0000000 11.0000000  8.0000000 12.0000000  8.5000000
##           sd                                                2.1213203
##               
## n_tokens_title        183        186        190        191        192
##           mean 10.0000000 10.0000000 10.5000000  9.0000000  9.0000000
##           sd                          0.7071068                      
##               
## n_tokens_title        196        201        202        205        206
##           mean  9.0000000  6.0000000 10.0000000 11.3333333 13.0000000
##           sd                                     0.5773503           
##               
## n_tokens_title        211        213        215        217        218
##           mean 11.5000000  9.0000000  9.5000000 10.5000000  8.0000000
##           sd    2.1213203  0.0000000  3.5355339  0.7071068  0.0000000
##               
## n_tokens_title        221        223        224        226        228
##           mean  9.0000000  9.0000000  9.5000000  5.0000000  9.0000000
##           sd    0.0000000             0.7071068             1.4142136
##               
## n_tokens_title        233        236        237        238        240
##           mean  9.0000000 10.0000000  8.3333333  9.0000000  9.0000000
##           sd    2.8284271             2.0816660                      
##               
## n_tokens_title        241        245        246        248        250
##           mean  9.5000000  8.0000000  7.0000000 10.0000000  8.0000000
##           sd    0.7071068  0.0000000                                 
##               
## n_tokens_title        251        256        258        261        262
##           mean  8.5000000  8.0000000  9.5000000  7.0000000  8.0000000
##           sd    0.7071068             2.1213203                      
##               
## n_tokens_title        264        266        268        269        277
##           mean  9.0000000  7.0000000  8.0000000 10.0000000 10.0000000
##           sd                                                         
##               
## n_tokens_title        278        279        280        285        286
##           mean  8.0000000  9.0000000  8.0000000  9.0000000  8.0000000
##           sd                                                         
##               
## n_tokens_title        287        292        294        295        296
##           mean  7.0000000  9.0000000 10.0000000  6.0000000  8.0000000
##           sd                                                         
##               
## n_tokens_title        300        301        302        305        308
##           mean 10.0000000 11.0000000  6.0000000 10.0000000 10.5000000
##           sd    4.2426407                                   0.7071068
##               
## n_tokens_title        309        313        317        318        321
##           mean  7.0000000  9.0000000  6.0000000 10.5000000 12.0000000
##           sd                                     0.7071068           
##               
## n_tokens_title        322        324        325        326        331
##           mean  9.0000000  8.0000000  7.0000000  8.0000000  7.0000000
##           sd                                                         
##               
## n_tokens_title        336        339        340        341        342
##           mean  9.0000000  8.0000000  8.0000000  7.5000000 12.0000000
##           sd                                     0.7071068  1.4142136
##               
## n_tokens_title        343        346        348        349        350
##           mean  9.0000000 10.5000000  6.5000000 14.0000000  9.5000000
##           sd    2.8284271  0.7071068  0.7071068             2.1213203
##               
## n_tokens_title        354        356        357        358        365
##           mean  9.0000000 10.0000000  8.5000000  8.0000000  5.0000000
##           sd    5.6568542             0.7071068  0.0000000           
##               
## n_tokens_title        366        368        369        371        373
##           mean 10.3333333 11.0000000  9.0000000  9.5000000  9.0000000
##           sd    2.0816660             2.8284271  2.1213203  1.4142136
##               
## n_tokens_title        375        377        378        379        380
##           mean 10.0000000  8.0000000 12.0000000  9.0000000 10.0000000
##           sd    2.8284271  1.4142136                                 
##               
## n_tokens_title        381        382        383        384        386
##           mean  8.0000000  8.5000000  9.0000000  8.0000000 11.5000000
##           sd               0.7071068                        2.1213203
##               
## n_tokens_title        387        390        391        392        393
##           mean 10.0000000 11.0000000  7.0000000  9.5000000  9.3333333
##           sd               2.8284271             2.1213203  3.5118846
##               
## n_tokens_title        395        396        397        398        399
##           mean 10.5000000  6.0000000  8.0000000  9.5000000 11.0000000
##           sd    2.1213203                        0.7071068  0.0000000
##               
## n_tokens_title        400        401        402        403        404
##           mean 10.3333333  7.3333333 11.0000000 10.0000000  9.0000000
##           sd    1.5275252  1.1547005  1.4142136                      
##               
## n_tokens_title        407        408        410        411        412
##           mean 12.0000000  9.0000000  9.5000000  8.0000000 10.2500000
##           sd               1.4142136  0.7071068             1.2583057
##               
## n_tokens_title        413        414        416        417        419
##           mean 10.5000000 10.0000000 11.0000000  9.0000000 11.5000000
##           sd    2.1213203             2.0000000  2.6457513  2.1213203
##               
## n_tokens_title        420        421        422        423        424
##           mean  9.0000000 10.5000000  9.0000000  9.3333333 10.0000000
##           sd               0.7071068             1.5275252           
##               
## n_tokens_title        425        426        427        428        429
##           mean 11.6666667 10.0000000 12.0000000  8.0000000 10.0000000
##           sd    0.5773503                                   0.0000000
##               
## n_tokens_title        430        431        432        434        435
##           mean 11.0000000  6.0000000 10.6666667 11.0000000  7.6666667
##           sd    2.8284271             3.2145503             1.1547005
##               
## n_tokens_title        436        437        438        440        441
##           mean 10.7500000  9.3333333  9.0000000 10.3333333  9.5000000
##           sd    1.5000000  0.5773503  0.0000000  3.0550505  2.1213203
##               
## n_tokens_title        444        445        446        447        448
##           mean  8.0000000 11.3333333 10.0000000 11.0000000  7.7500000
##           sd               2.5166115  0.0000000  1.4142136  0.9574271
##               
## n_tokens_title        449        450        451        452        454
##           mean  7.0000000 10.0000000 10.3333333 10.0000000  9.6666667
##           sd               1.7320508  3.0550505             1.1547005
##               
## n_tokens_title        455        456        458        459        460
##           mean  9.6666667  9.2500000 10.5000000  9.0000000 10.3333333
##           sd    0.5773503  0.9574271  2.1213203             2.0816660
##               
## n_tokens_title        461        462        463        464        465
##           mean 11.0000000 10.0000000 10.0000000 11.0000000 13.0000000
##           sd    2.0000000  2.0000000  1.0000000                      
##               
## n_tokens_title        466        467        468        469        471
##           mean 10.0000000  9.3333333 11.0000000  9.2500000  8.3333333
##           sd               1.1547005  1.4142136  1.8929694  0.5773503
##               
## n_tokens_title        472        473        474        475        476
##           mean  8.0000000  9.2500000 10.0000000 11.0000000 10.0000000
##           sd    0.0000000  2.5000000             2.1602469           
##               
## n_tokens_title        477        478        480        482        483
##           mean  6.0000000  9.0000000 11.0000000 11.5000000 10.5000000
##           sd               1.4142136  4.2426407  0.7071068  0.7071068
##               
## n_tokens_title        484        485        486        488        489
##           mean 10.0000000 13.0000000  8.0000000 10.5000000  9.5000000
##           sd    2.4494897                        3.5355339  0.7071068
##               
## n_tokens_title        490        492        493        494        495
##           mean 12.0000000  9.3333333  9.6666667 10.6666667  9.0000000
##           sd               1.1547005  1.1547005  1.1547005  1.6329932
##               
## n_tokens_title        496        497        498        500        501
##           mean  7.5000000 10.5000000  9.6000000 11.3333333 13.0000000
##           sd    0.7071068  2.1213203  1.9493589  0.5773503           
##               
## n_tokens_title        502        503        504        505        506
##           mean 10.0000000 10.6666667  9.2500000 11.5000000 10.4000000
##           sd               2.5166115  1.7078251  1.7320508  2.1908902
##               
## n_tokens_title        507        508        510        511        512
##           mean 10.5000000 11.0000000 11.0000000 10.6666667 12.0000000
##           sd    0.7071068             1.0000000  0.5773503           
##               
## n_tokens_title        513        514        515        516        517
##           mean 11.0000000  8.0000000 11.5000000  8.2500000 10.0000000
##           sd    1.4142136             0.7071068  0.9574271           
##               
## n_tokens_title        518        519        520        521        522
##           mean  9.7500000  8.0000000  9.0000000 10.0000000 10.6666667
##           sd    2.2173558                                   3.7859389
##               
## n_tokens_title        523        525        526        527        528
##           mean  9.0000000  9.5000000 10.7500000  9.5000000  8.6666667
##           sd    2.6457513  0.7071068  1.8929694  1.3784049  0.5773503
##               
## n_tokens_title        529        530        531        532        533
##           mean  9.5000000  9.0000000  9.0000000 11.0000000  8.8000000
##           sd    1.7320508             1.2247449  1.4142136  1.4832397
##               
## n_tokens_title        534        535        536        537        538
##           mean 11.0000000  9.5000000 10.2500000  9.2500000 10.4000000
##           sd    1.4142136  0.5773503  2.2173558  1.7078251  2.5099801
##               
## n_tokens_title        539        541        542        544        545
##           mean 10.3333333 11.0000000  9.7500000 11.6666667  8.5000000
##           sd    2.0816660  1.4142136  2.0615528  0.5773503  2.1213203
##               
## n_tokens_title        546        547        548        549        550
##           mean  9.0000000 10.0000000  8.2000000 10.0000000  9.0000000
##           sd    0.0000000             2.7748874  1.4142136  1.4142136
##               
## n_tokens_title        552        553        555        556        557
##           mean 12.0000000 11.0000000 11.5000000 10.0000000  9.0000000
##           sd    0.0000000  1.4142136  0.7071068  1.7320508           
##               
## n_tokens_title        558        559        560        561        562
##           mean 10.0000000  9.6666667 11.3333333 11.5000000 12.0000000
##           sd               1.1547005  1.5275252  3.5355339           
##               
## n_tokens_title        563        564        565        566        567
##           mean 10.5000000 10.5000000 10.5000000  9.8333333 12.0000000
##           sd    2.1213203  1.0000000  2.3804761  1.7224014           
##               
## n_tokens_title        568        569        570        571        572
##           mean  9.0000000 11.0000000 11.6666667 10.6666667  8.5000000
##           sd    1.4142136  7.0710678  3.2145503  2.0816660  0.7071068
##               
## n_tokens_title        573        574        575        576        577
##           mean 10.0000000 10.0000000  9.6000000 10.0000000 10.0000000
##           sd               2.2360680  1.1401754  1.5811388  2.8284271
##               
## n_tokens_title        578        579        580        581        582
##           mean  9.5000000  9.0000000 11.0000000 10.5000000  8.3333333
##           sd    0.5773503  1.8708287             2.6645825  1.5275252
##               
## n_tokens_title        583        584        585        586        588
##           mean 11.0000000  9.3333333 10.2000000  9.8000000 11.0000000
##           sd    1.0000000  1.5275252  1.3038405  1.9235384  0.0000000
##               
## n_tokens_title        589        590        591        592        593
##           mean 10.4000000 10.3333333 10.8000000 11.0000000 11.8000000
##           sd    2.6076810  0.5773503  3.5637059             1.3038405
##               
## n_tokens_title        594        595        596        597        598
##           mean 10.5000000 13.0000000 11.6666667 11.0000000  9.3333333
##           sd    3.5355339             2.0816660  1.0000000  2.5166115
##               
## n_tokens_title        599        600        601        602        603
##           mean  8.5000000  7.0000000  7.0000000 10.5000000  9.6666667
##           sd    3.0000000                        2.1679483  1.5275252
##               
## n_tokens_title        604        605        606        607        608
##           mean  9.0000000  8.7500000 11.4285714 12.0000000  9.3333333
##           sd    1.4142136  2.2173558  0.9759001             1.5275252
##               
## n_tokens_title        609        610        612        613        614
##           mean 12.0000000  7.6666667 11.1428571  8.5000000 10.5000000
##           sd    1.4142136  1.5275252  1.2149858  3.5355339  1.7606817
##               
## n_tokens_title        615        616        618        619        620
##           mean 12.0000000 10.5000000  9.0000000 10.5000000  9.0000000
##           sd               0.7071068  1.4142136  0.7071068  2.0976177
##               
## n_tokens_title        621        622        623        624        625
##           mean 10.0000000 11.0000000  8.8000000 11.0000000 13.0000000
##           sd    0.8164966  1.4142136  2.0493902  1.6329932           
##               
## n_tokens_title        626        627        628        629        630
##           mean 10.2500000  8.0000000 10.3333333 12.6666667 10.3333333
##           sd    0.9574271             1.5275252  2.3094011  1.5275252
##               
## n_tokens_title        631        632        633        634        635
##           mean  8.0000000  9.3333333 11.0000000 10.0000000  9.7142857
##           sd    2.6457513  1.5275252  0.0000000  0.0000000  1.9760470
##               
## n_tokens_title        636        637        638        639        640
##           mean  9.0000000  9.5000000  9.5000000  8.5000000  9.0000000
##           sd    1.4142136  2.1213203  2.1213203  1.4142136  1.0000000
##               
## n_tokens_title        641        642        643        644        645
##           mean  9.0000000  9.0000000 10.2500000  9.3333333 10.1666667
##           sd               2.1602469  1.2583057  1.5275252  1.1690452
##               
## n_tokens_title        646        647        648        649        650
##           mean 11.3333333 12.0000000  8.6000000 12.2500000  9.2500000
##           sd    0.5773503             1.1401754  1.2583057  1.7078251
##               
## n_tokens_title        651        652        653        654        655
##           mean 10.0000000 11.0000000  8.0000000  8.3333333  9.0000000
##           sd    2.5819889                        1.5275252  2.8284271
##               
## n_tokens_title        656        657        658        659        660
##           mean  9.5000000  9.6250000  9.0000000 10.0000000 10.7500000
##           sd    1.0488088  1.7677670  0.7071068  3.4641016  2.5000000
##               
## n_tokens_title        661        662        663        664        665
##           mean 10.8000000  9.6666667 11.0000000 10.5000000 10.0000000
##           sd    1.4832397  0.5773503  1.7320508  0.7071068           
##               
## n_tokens_title        666        667        668        669        670
##           mean  9.0000000  9.6666667  9.5000000 10.5000000  9.0000000
##           sd               0.5773503  0.7071068  0.7071068  3.5590261
##               
## n_tokens_title        671        672        673        674        675
##           mean  9.5000000  9.3333333 10.3333333  9.6666667  9.8000000
##           sd    0.5773503  2.0816660  1.5275252  0.5773503  3.1144823
##               
## n_tokens_title        676        677        678        679        680
##           mean 10.3333333 11.0000000 10.0000000  9.2500000  9.6666667
##           sd    2.5033311  4.5825757  1.7320508  1.7078251  0.5773503
##               
## n_tokens_title        681        682        683        684        685
##           mean 10.7142857 11.1666667 10.7500000  9.0000000 11.0000000
##           sd    1.6035675  1.4719601  0.9574271  0.0000000  2.8284271
##               
## n_tokens_title        686        687        688        689        690
##           mean  9.0000000  9.2500000 11.0000000 10.4000000  9.3333333
##           sd    2.1602469  2.5000000  1.0000000  2.6076810  1.5055453
##               
## n_tokens_title        691        692        693        694        695
##           mean  9.3333333 10.0000000 11.3333333  9.5000000  9.5000000
##           sd    4.0414519  0.8164966  0.5773503  1.2909944  2.1213203
##               
## n_tokens_title        696        697        698        699        700
##           mean  9.5000000 10.6666667  9.7142857 10.6666667 10.7500000
##           sd    2.3804761  4.0414519  2.0586635  2.5166115  0.9574271
##               
## n_tokens_title        701        702        703        704        705
##           mean 10.3333333  8.5000000 12.0000000  9.3333333  9.2500000
##           sd    2.2912878  2.1213203  1.7320508  1.5275252  2.2173558
##               
## n_tokens_title        706        707        708        709        710
##           mean 10.0000000 10.2500000 11.0000000 12.0000000 10.4285714
##           sd    1.0000000  2.6299556  4.2426407  1.0000000  1.2724180
##               
## n_tokens_title        711        712        713        714        715
##           mean  9.0000000 10.4285714  9.2500000  8.0000000  9.5000000
##           sd    1.0000000  1.8126539  3.4034296  2.6457513  1.7320508
##               
## n_tokens_title        716        717        718        719        720
##           mean  9.6666667 10.8000000  9.0000000 10.3333333 10.8000000
##           sd    0.5773503  2.5884358  2.9439203  1.1547005  3.1144823
##               
## n_tokens_title        721        722        723        724        725
##           mean  9.0000000  8.5000000  7.0000000 15.0000000  9.6000000
##           sd               0.7071068                        3.1304952
##               
## n_tokens_title        726        727        728        729        730
##           mean  8.6666667  9.8333333  9.8333333  9.6000000 10.4545455
##           sd    1.7511901  1.1690452  1.7224014  2.3021729  1.2135598
##               
## n_tokens_title        731        732        733        734        735
##           mean 10.0000000  8.5000000 10.3333333  8.5000000 10.5714286
##           sd    1.4142136  2.2583180  2.1602469  0.7071068  2.0701967
##               
## n_tokens_title        736        737        738        739        740
##           mean 10.0000000 10.3333333 10.7500000 12.0000000 11.0000000
##           sd    1.5811388  1.5275252  1.7078251  2.8284271  1.6733201
##               
## n_tokens_title        741        742        743        744        745
##           mean 10.1666667 10.5714286 11.0000000 11.8000000  9.6666667
##           sd    2.6394444  2.5727510  1.4142136  1.7888544  1.5055453
##               
## n_tokens_title        746        748        749        750        751
##           mean 10.6666667  9.6666667  8.0000000 10.7142857 10.2500000
##           sd    2.5033311  3.5118846  0.0000000  1.7994708  1.8322508
##               
## n_tokens_title        752        753        754        755        756
##           mean 10.2222222 10.0000000 10.0000000 10.8333333 11.4000000
##           sd    1.3944334  3.3166248  3.3166248  1.8348479  2.5099801
##               
## n_tokens_title        757        758        759        760        761
##           mean  9.3333333  8.0000000 10.4000000  9.5000000  8.3333333
##           sd    1.7511901  2.8284271  1.8165902  1.7320508  0.5773503
##               
## n_tokens_title        762        763        764        765        766
##           mean 11.0000000 10.4000000  9.7500000 10.5000000  9.0000000
##           sd    2.8284271  2.3021729  2.0615528  1.2909944           
##               
## n_tokens_title        767        768        769        770        771
##           mean 10.2500000  9.0000000  9.2500000 10.0000000 11.0000000
##           sd    1.7078251  2.1602469  3.5000000  1.8257419  1.4142136
##               
## n_tokens_title        772        773        774        775        776
##           mean 10.0000000  9.5000000  8.8000000 10.1428571  9.0000000
##           sd    0.0000000  1.2909944  1.3038405  3.0783422  2.8284271
##               
## n_tokens_title        777        778        779        780        781
##           mean 10.0000000  9.0000000  7.5000000  9.0000000 11.0000000
##           sd    1.4142136             3.5355339                      
##               
## n_tokens_title        782        783        784        785        786
##           mean 11.2500000  9.1111111 11.5000000 10.2500000 10.0000000
##           sd    2.9860788  1.1666667  0.7071068  1.8929694  0.8164966
##               
## n_tokens_title        787        788        789        790        791
##           mean  8.6000000 12.0000000  9.2000000 10.5555556 10.0000000
##           sd    2.7018512  1.0000000  1.0954451  2.2973415  2.8284271
##               
## n_tokens_title        792        793        794        795        796
##           mean 10.1250000  8.0000000 12.0000000  9.6000000  8.0000000
##           sd    1.9594095             1.2909944  1.5165751  0.0000000
##               
## n_tokens_title        797        798        799        800        801
##           mean  9.6666667 11.1428571  9.7500000  8.8000000 10.3333333
##           sd    1.5275252  3.7606990  1.2583057  1.0954451  1.1547005
##               
## n_tokens_title        802        803        804        805        806
##           mean 10.4285714  9.5000000 10.0000000  9.1666667  9.0000000
##           sd    3.1014590  0.7071068  1.5811388  1.4719601  2.1602469
##               
## n_tokens_title        807        808        809        810        811
##           mean  9.0000000  9.8333333 10.6666667  8.6000000 10.3333333
##           sd    1.8257419  1.4719601  1.8618987  1.1401754  0.8164966
##               
## n_tokens_title        812        813        814        815        816
##           mean  8.5000000  9.0000000 10.0000000 12.7500000  9.8000000
##           sd    1.2909944  0.0000000  0.0000000  2.8722813  1.9235384
##               
## n_tokens_title        817        818        819        820        821
##           mean 10.0000000 10.6000000 11.0000000  8.0000000 10.0000000
##           sd    2.1213203  1.3416408  1.0000000  0.0000000  2.7688746
##               
## n_tokens_title        822        823        824        825        826
##           mean  9.6000000 10.0000000 10.0000000  8.8000000  9.0000000
##           sd    1.1401754  1.3093073  1.8708287  1.6865481  0.0000000
##               
## n_tokens_title        827        828        829        830        831
##           mean  9.0000000 10.5000000 11.0000000 12.3333333  9.1428571
##           sd    0.6324555  2.6457513  1.0000000  0.5773503  1.7728105
##               
## n_tokens_title        832        833        834        835        836
##           mean 10.3333333  9.7142857  8.6000000 12.0000000 10.7500000
##           sd    2.1602469  3.3022359  2.0736441  4.3204938  2.2173558
##               
## n_tokens_title        837        838        839        840        841
##           mean 10.0000000 10.4285714  9.0000000 10.0000000 10.0000000
##           sd    2.5495098  1.5118579  2.3452079  2.0000000  1.4142136
##               
## n_tokens_title        842        843        844        845        846
##           mean 10.5000000  9.0000000 10.4000000 10.7142857 10.5000000
##           sd    2.1213203  2.7386128  3.2093613  1.2535663  1.7320508
##               
## n_tokens_title        847        848        849        850        851
##           mean 12.0000000  9.5000000 10.7500000  9.3333333 10.5000000
##           sd               0.7071068  1.5000000  0.5773503  2.3804761
##               
## n_tokens_title        852        853        854        855        856
##           mean 10.0000000  9.6666667  9.2500000 10.3333333 10.0000000
##           sd    2.1602469  2.5166115  3.3040379  1.7511901  2.2803509
##               
## n_tokens_title        857        858        859        860        861
##           mean  8.8571429  9.5000000  9.0000000 10.6000000 10.3333333
##           sd    1.2149858  1.9148542  1.5491933  2.0736441  3.2145503
##               
## n_tokens_title        862        863        864        865        866
##           mean  9.3333333 10.2000000  8.8333333 11.0000000 10.3333333
##           sd    2.3094011  2.5884358  1.6020820             1.5275252
##               
## n_tokens_title        867        868        869        870        871
##           mean  9.2500000 10.2000000 10.0000000 11.0000000  9.4000000
##           sd    2.5000000  1.4832397  1.6329932  1.4142136  2.6076810
##               
## n_tokens_title        872        873        874        875        876
##           mean  9.6666667  9.2000000 11.0000000  9.0000000  8.7500000
##           sd    1.2110601  1.7888544  3.3166248  1.4142136  2.6299556
##               
## n_tokens_title        877        878        879        880        881
##           mean  9.0000000 10.2857143  8.0000000  9.4285714 11.0000000
##           sd    2.4494897  2.6903708             1.6183472  0.0000000
##               
## n_tokens_title        882        883        884        885        886
##           mean 11.7500000  9.3333333  8.2000000 10.6666667  9.5000000
##           sd    1.8929694  1.1547005  2.7748874  2.8867513  2.6457513
##               
## n_tokens_title        887        888        889        890        891
##           mean  9.8333333 12.5000000  9.8333333  9.0000000 10.7142857
##           sd    2.1369761  0.7071068  2.1369761  1.4142136  1.1126973
##               
## n_tokens_title        892        894        895        896        897
##           mean 10.0000000 10.4000000  8.5714286 10.0000000 10.0000000
##           sd    2.1213203  2.7018512  1.9023795  2.0000000  2.0000000
##               
## n_tokens_title        898        899        900        901        902
##           mean  9.2500000  9.8333333  9.5714286 11.3333333 10.0000000
##           sd    2.2173558  1.4719601  1.5118579  2.0816660  1.1180340
##               
## n_tokens_title        903        904        905        906        907
##           mean 10.1666667  7.8000000 10.4000000 11.0000000 10.2500000
##           sd    2.6394444  0.8366600  2.3021729  0.0000000  1.2817399
##               
## n_tokens_title        908        909        910        911        912
##           mean 11.5000000 11.0000000 11.7500000  9.0000000 10.1666667
##           sd    3.5355339  1.2909944  1.5000000  1.8257419  2.1369761
##               
## n_tokens_title        913        914        915        916        917
##           mean 10.1428571 10.7142857  9.8000000  9.7142857  9.5000000
##           sd    1.0690450  2.8702082  2.3874673  2.4299716  1.7606817
##               
## n_tokens_title        918        919        920        921        922
##           mean  8.6666667 11.0000000 11.0000000 11.0000000  9.8333333
##           sd    1.9364917  1.8708287  1.0000000  4.2426407  2.7141604
##               
## n_tokens_title        923        924        925        926        927
##           mean  9.5000000 10.1250000 10.3333333 10.8000000 11.5000000
##           sd    1.0000000  1.1259916  3.2145503  2.5884358  0.7071068
##               
## n_tokens_title        928        929        930        931        932
##           mean 11.2000000 10.5000000 11.0000000 12.0000000  8.6666667
##           sd    3.1144823  0.7071068  2.0000000             1.1547005
##               
## n_tokens_title        933        934        935        936        937
##           mean  9.8333333  9.3333333  9.0000000 10.6666667 10.8333333
##           sd    1.3291601  1.2110601  1.0000000  2.0816660  2.4832774
##               
## n_tokens_title        938        939        940        941        942
##           mean 12.5000000 10.0000000  8.2000000  6.0000000 11.2000000
##           sd    0.7071068  1.6996732  1.4832397             2.1679483
##               
## n_tokens_title        943        944        945        946        947
##           mean  9.6666667  9.2500000 12.3333333  9.8333333  9.0000000
##           sd    1.1547005  1.2583057  1.5275252  1.8348479  1.8257419
##               
## n_tokens_title        948        949        950        951        952
##           mean  8.0000000 10.4000000 10.4285714 10.0000000  8.8000000
##           sd               1.9493589  1.1338934  2.7688746  2.3874673
##               
## n_tokens_title        953        954        955        956        957
##           mean 11.7142857 11.0000000 10.3333333  9.5000000 10.8571429
##           sd    1.6035675  2.2360680  1.5275252  1.0488088  1.6761634
##               
## n_tokens_title        958        959        960        961        962
##           mean 10.3333333 10.5000000  9.7500000 11.0000000  8.5714286
##           sd    2.0816660  1.9148542  1.8929694  2.8284271  2.0701967
##               
## n_tokens_title        963        964        965        966        967
##           mean  8.2500000  9.5000000  9.7500000  9.0000000  9.0000000
##           sd    0.9574271  1.0488088  2.2173558  2.0000000  1.4142136
##               
## n_tokens_title        968        969        970        971        972
##           mean  9.7500000 11.0000000  9.5714286  8.8333333  9.7142857
##           sd    1.2583057  0.8944272  0.9759001  2.9268869  1.7994708
##               
## n_tokens_title        973        974        975        976        977
##           mean 10.0000000 10.0000000  7.0000000 11.0000000  9.0000000
##           sd    2.9664794  1.4142136             0.0000000  0.0000000
##               
## n_tokens_title        978        979        980        981        982
##           mean 10.4000000  9.2222222 10.0000000 10.3333333  7.5000000
##           sd    1.8165902  1.3017083  1.4142136  3.0550505  0.7071068
##               
## n_tokens_title        983        984        985        986        987
##           mean 10.2500000 10.0000000  9.6666667  8.0000000  9.2857143
##           sd    1.7525492  2.4494897  2.5166115  1.8257419  2.3603874
##               
## n_tokens_title        988        989        990        991        992
##           mean  9.5000000  8.6000000  9.5000000  9.8571429 10.1250000
##           sd    0.7071068  0.8944272  2.2677868  0.8997354  1.2464235
##               
## n_tokens_title        993        994        995        996        997
##           mean 10.5000000 11.0000000 10.0000000  9.0000000  9.0000000
##           sd    0.7071068  3.1622777  0.0000000             3.0000000
##               
## n_tokens_title        998        999       1000       1100       1200
##           mean  9.5454545  9.5000000 10.0651163  9.7648352  9.6902655
##           sd    1.7529196  2.3804761  2.0610862  1.9440621  1.8410430
##               
## n_tokens_title       1300       1400       1500       1600       1700
##           mean  9.6739726  9.6413613  9.6728395  9.6781609  9.7078189
##           sd    1.8547554  1.9154480  1.8961595  1.9304897  1.9308876
##               
## n_tokens_title       1800       1900       2000       2100       2200
##           mean 10.0380952  9.6418605  9.7419355 10.0463918  9.7209302
##           sd    1.9289971  1.8961634  2.0396249  2.1067157  2.0670128
##               
## n_tokens_title       2300       2400       2500       2600       2700
##           mean  9.4191176  9.5630252  9.8750000  9.9351852  9.7719298
##           sd    1.9533642  1.8069482  2.0149129  2.0520022  2.0740072
##               
## n_tokens_title       2800       2900       3000       3100       3200
##           mean  9.7628866  9.8910891  9.7625000  9.5432099  9.5666667
##           sd    1.7956730  1.8324901  1.8228073  2.0003086  1.9890148
##               
## n_tokens_title       3300       3400       3500       3600       3700
##           mean  9.6333333  9.7750000  9.7540984  9.6190476  9.3684211
##           sd    2.0333380  2.1463835  2.3640060  2.0830604  2.0496653
##               
## n_tokens_title       3800       3900       4000       4100       4200
##           mean  9.7755102  9.5185185  9.4857143  9.9069767 10.1458333
##           sd    1.5581146  2.0442348  1.7718622  2.2553001  2.3337449
##               
## n_tokens_title       4300       4400       4500       4600       4700
##           mean  9.1025641  9.9722222 10.0697674  9.7575758  9.5769231
##           sd    1.9302968  2.4434883  2.0747386  1.5817376  1.9631215
##               
## n_tokens_title       4800       4900       5000       5100       5200
##           mean  9.2500000  9.2187500  9.5161290 10.4137931  9.6206897
##           sd    2.1572775  1.7731760  1.8950984  2.2122587  2.1114280
##               
## n_tokens_title       5300       5400       5500       5600       5700
##           mean  9.3913043  9.0952381  9.3333333  9.5882353  9.8181818
##           sd    2.5715070  1.5781243  2.3094011  2.2928918  2.2811101
##               
## n_tokens_title       5800       5900       6000       6100       6200
##           mean  9.1666667  9.3076923  9.0909091  9.7777778  9.6470588
##           sd    2.1213203  2.3939025  1.7703669  2.0452400  1.9345922
##               
## n_tokens_title       6300       6400       6500       6600       6700
##           mean  9.6250000  9.4117647  9.3043478 10.0588235 10.0000000
##           sd    1.8132963  1.4168108  1.8447661  2.2768012  1.8257419
##               
## n_tokens_title       6800       6900       7000       7100       7200
##           mean 10.0625000  9.2222222  8.7500000  9.7500000  9.7142857
##           sd    2.0806650  2.1572192  1.2817399  1.6583124  2.0542104
##               
## n_tokens_title       7300       7400       7500       7600       7700
##           mean  8.9230769  9.4444444  8.1250000  9.8181818  9.9090909
##           sd    1.6563785  2.2287486  1.6420806  2.0889319  1.5782614
##               
## n_tokens_title       7800       7900       8000       8100       8200
##           mean  9.0769231  9.4000000  9.6666667  9.3000000 10.8888889
##           sd    2.3965788  1.6465452  1.6143298  2.0575066  2.2607767
##               
## n_tokens_title       8300       8400       8500       8600       8700
##           mean 10.5000000  9.8571429  9.5714286 10.0000000 10.2857143
##           sd    1.6431677  1.5735916  2.2990681  2.3664319  2.4299716
##               
## n_tokens_title       8800       8900       9000       9100       9200
##           mean  8.7500000  9.4000000  9.1666667  8.7777778 10.2000000
##           sd    0.9574271  2.3021729  2.2286020  1.3944334  1.5491933
##               
## n_tokens_title       9300       9400       9500       9600       9700
##           mean  9.4000000  9.5000000  9.0000000 10.5000000 10.5833333
##           sd    1.8165902  2.0701967  1.8257419  1.7320508  2.3532698
##               
## n_tokens_title       9800       9900      10000      10100      10200
##           mean 10.2222222 11.5000000  9.8571429 10.2000000  9.2500000
##           sd    2.2236107  3.1091264  1.5735916  1.3038405  2.0615528
##               
## n_tokens_title      10300      10400      10500      10600      10700
##           mean 10.1666667  9.6666667  9.5000000 10.8750000  9.0000000
##           sd    1.4719601  1.5055453  0.7071068  1.5526475  2.1081851
##               
## n_tokens_title      10800      10900      11000      11100      11200
##           mean  8.6666667  9.5000000 11.4000000  9.0000000  8.5000000
##           sd    1.8618987  2.0816660  3.9115214  2.2038927  2.1213203
##               
## n_tokens_title      11300      11400      11500      11600      11700
##           mean  8.0000000  9.8333333  8.5000000  9.0000000  9.1250000
##           sd    2.6457513  0.9831921  2.1213203             2.5877458
##               
## n_tokens_title      11800      11900      12000      12100      12200
##           mean 10.7500000  8.6666667 11.0000000 12.0000000  9.0000000
##           sd    2.0615528  2.9439203  1.7888544  1.7320508  1.4142136
##               
## n_tokens_title      12300      12400      12500      12600      12700
##           mean  9.6666667  9.1666667  9.0000000 10.5000000  9.5000000
##           sd    2.1794495  1.8348479  2.0000000  2.1213203  0.7071068
##               
## n_tokens_title      12800      12900      13000      13100      13200
##           mean  7.2500000 10.0000000 10.2500000  9.0000000 10.5000000
##           sd    1.8929694  1.4142136  1.2583057             2.1213203
##               
## n_tokens_title      13300      13400      13500      13600      13700
##           mean  9.3333333 10.6666667 10.0000000  9.5000000  8.5000000
##           sd    1.5275252  3.0550505  0.0000000  2.1213203  1.7320508
##               
## n_tokens_title      13800      13900      14000      14100      14200
##           mean  9.0000000  9.4285714 10.0000000  9.0000000  9.0000000
##           sd    0.0000000  2.2253946                                 
##               
## n_tokens_title      14300      14400      14500      14600      14700
##           mean  9.6000000 10.2500000 11.7500000 13.0000000  9.7500000
##           sd    2.0736441  1.8929694  0.5000000             1.2583057
##               
## n_tokens_title      14800      14900      15000      15200      15300
##           mean  9.7500000  7.5000000 10.2500000 10.2500000 11.5000000
##           sd    2.2173558  0.7071068  0.9574271  0.9574271  0.7071068
##               
## n_tokens_title      15400      15500      15600      15700      15800
##           mean  8.5000000  9.0000000  7.5000000  9.7500000  7.0000000
##           sd    1.9148542             0.7071068  1.2583057  2.8284271
##               
## n_tokens_title      15900      16100      16200      16300      16400
##           mean  9.0000000  8.3333333  8.5000000 10.0000000  8.5000000
##           sd    0.0000000  0.5773503  2.6457513  2.0000000  0.7071068
##               
## n_tokens_title      16500      16600      16700      16800      16900
##           mean  9.0000000  9.7500000 10.0000000  8.0000000  8.5000000
##           sd    1.4142136  2.0615528  2.0000000  0.0000000  2.1213203
##               
## n_tokens_title      17000      17100      17200      17300      17400
##           mean 11.0000000  9.8000000  8.0000000 10.0000000  8.0000000
##           sd               2.1679483             1.4142136           
##               
## n_tokens_title      17500      17600      17800      17900      18000
##           mean 12.0000000 11.3333333 10.5000000  8.6666667 11.0000000
##           sd    2.8284271  2.5166115  3.5355339  0.5773503  1.4142136
##               
## n_tokens_title      18100      18200      18300      18400      18700
##           mean  8.6666667  6.0000000 11.0000000  9.6000000 10.0000000
##           sd    2.8867513  1.4142136             1.3416408           
##               
## n_tokens_title      18900      19100      19200      19400      19800
##           mean 11.0000000 15.0000000  6.0000000 10.0000000 10.0000000
##           sd                                                1.4142136
##               
## n_tokens_title      20200      20300      20500      20600      20700
##           mean 12.0000000 13.0000000 10.0000000 11.0000000  8.5000000
##           sd    5.6568542                        1.4142136  2.1213203
##               
## n_tokens_title      20800      20900      21000      21100      21400
##           mean  9.0000000 10.3333333  8.0000000 11.0000000 12.5000000
##           sd    1.4142136  3.0550505                        2.1213203
##               
## n_tokens_title      21500      21700      21800      21900      22000
##           mean  6.5000000 12.0000000  7.0000000 10.0000000 10.5000000
##           sd    0.7071068  5.6568542                        0.7071068
##               
## n_tokens_title      22100      22200      22300      23000      23100
##           mean  7.0000000 11.0000000 11.0000000 13.0000000 12.0000000
##           sd    0.0000000             1.0000000                      
##               
## n_tokens_title      23300      23500      23600      23700      23800
##           mean 13.0000000  9.6666667  6.0000000  9.0000000 13.0000000
##           sd               2.8867513             1.4142136           
##               
## n_tokens_title      23900      24000      24200      24300      24400
##           mean  8.0000000  8.0000000 11.0000000 12.0000000 13.0000000
##           sd                                                1.4142136
##               
## n_tokens_title      24500      24800      24900      25000      25100
##           mean  8.6666667 12.0000000  9.0000000 13.0000000 15.0000000
##           sd    2.0816660                                            
##               
## n_tokens_title      25200      25300      25700      26200      26300
##           mean 10.3333333 11.5000000  9.0000000  7.0000000  9.0000000
##           sd    2.5166115  3.5355339                                 
##               
## n_tokens_title      26400      26600      26900      27000      27300
##           mean 11.6666667  7.0000000 11.0000000  8.0000000 12.0000000
##           sd    2.5166115                        2.8284271  1.4142136
##               
## n_tokens_title      27400      27700      27900      28200      28300
##           mean 12.0000000  9.0000000  9.0000000 11.0000000  9.0000000
##           sd               2.8284271             3.4641016           
##               
## n_tokens_title      28600      28900      30000      30200      30400
##           mean 11.0000000 11.0000000 11.0000000 10.0000000 10.0000000
##           sd                                     2.8284271           
##               
## n_tokens_title      31400      31600      32200      32600      32700
##           mean 11.0000000 12.0000000 10.0000000 11.0000000  9.0000000
##           sd                                                         
##               
## n_tokens_title      33100      33900      34900      35100      35300
##           mean 11.0000000  8.0000000  7.0000000 12.0000000  7.0000000
##           sd                                                         
##               
## n_tokens_title      35800      36100      36200      36700      36800
##           mean  9.0000000  9.0000000  9.3333333  8.0000000  9.0000000
##           sd    0.0000000             1.1547005                      
##               
## n_tokens_title      37400      39200      39400      40100      40400
##           mean 13.0000000 10.0000000 13.0000000  6.0000000  9.5000000
##           sd                                                2.1213203
##               
## n_tokens_title      41200      41600      41700      42200      42600
##           mean 10.0000000  7.0000000  8.0000000  8.0000000 12.0000000
##           sd                                                         
##               
## n_tokens_title      43100      44700      45400      48800      49000
##           mean  8.0000000 13.0000000  5.0000000  8.0000000 10.0000000
##           sd                                                         
##               
## n_tokens_title      50200      51900      53100      53700      54300
##           mean 11.5000000 12.0000000 10.0000000 11.0000000 12.0000000
##           sd    0.7071068                                            
##               
## n_tokens_title      56400      57600      61500      61600      62300
##           mean  9.0000000 10.0000000 13.0000000  8.0000000 13.0000000
##           sd                                                         
##               
## n_tokens_title      65300      68300      71800      73100      80400
##           mean 10.0000000  7.0000000 11.0000000  9.0000000 10.0000000
##           sd                                                         
##               
## n_tokens_title      81200      87000      93800      97200     104100
##           mean 11.0000000 10.0000000 14.0000000 10.0000000  9.0000000
##           sd                                                         
##               
## n_tokens_title     112500     118700     144400     196700     210300
##           mean  8.0000000  7.0000000  9.0000000  9.0000000 11.0000000
##           sd                                                         
##               
## n_tokens_title     227300     306100     617900     690400     843300
##           mean 11.0000000 10.0000000 11.0000000 11.0000000 12.0000000
##           sd                                                         
## 
##                 
## n_tokens_content           4          23          41          45
##             mean    0.000000  650.000000  286.000000  479.000000
##             sd                                                  
##                 
## n_tokens_content          47          48          51          60
##             mean  291.000000  217.000000  526.000000  418.500000
##             sd                                        474.468650
##                 
## n_tokens_content          64          66          70          80
##             mean  439.500000  596.000000  144.000000  585.000000
##             sd    279.307179                                    
##                 
## n_tokens_content          82          84          86          87
##             mean  387.666667  278.000000  319.000000 1767.000000
##             sd    266.451371                                    
##                 
## n_tokens_content          88          90          91          95
##             mean  645.000000  420.000000  396.000000  376.500000
##             sd    222.031529                          210.010714
##                 
## n_tokens_content          97          98          99         102
##             mean   60.000000  658.000000  428.000000 1640.000000
##             sd                                                  
##                 
## n_tokens_content         106         109         111         116
##             mean  536.000000  206.000000  366.000000  512.000000
##             sd                                        368.647528
##                 
## n_tokens_content         119         123         127         129
##             mean  439.000000  361.000000  399.000000  320.000000
##             sd     36.769553  120.208153                        
##                 
## n_tokens_content         130         134         135         137
##             mean  862.000000  436.000000 1262.000000  386.000000
##             sd                                                  
##                 
## n_tokens_content         138         140         141         143
##             mean  784.000000  484.000000  661.000000  551.000000
##             sd     55.154329  176.776695                        
##                 
## n_tokens_content         144         146         149         150
##             mean  714.000000  597.000000  662.000000 1571.000000
##             sd                                                  
##                 
## n_tokens_content         151         154         158         160
##             mean  479.000000  934.000000  555.000000  429.000000
##             sd                                                  
##                 
## n_tokens_content         162         163         168         176
##             mean  461.000000  554.000000  286.000000  266.000000
##             sd                                                  
##                 
## n_tokens_content         178         180         181         183
##             mean  308.000000  571.000000  392.500000  239.000000
##             sd                            147.785317            
##                 
## n_tokens_content         186         190         191         192
##             mean  847.000000  677.000000  889.000000  953.000000
##             sd                456.790981                        
##                 
## n_tokens_content         196         201         202         205
##             mean  846.000000  366.000000  257.000000  203.666667
##             sd                                        104.977775
##                 
## n_tokens_content         206         211         213         215
##             mean  287.000000  629.000000 1014.500000  306.000000
##             sd                 22.627417  331.633080   62.225397
##                 
## n_tokens_content         217         218         221         223
##             mean  588.000000  117.500000  392.500000  502.000000
##             sd    589.727056  166.170094   57.275649            
##                 
## n_tokens_content         224         226         228         233
##             mean  515.000000 1337.000000  225.000000  143.000000
##             sd     32.526912               79.195959   38.183766
##                 
## n_tokens_content         236         237         238         240
##             mean  464.000000  347.666667  609.000000  537.000000
##             sd                146.865017                        
##                 
## n_tokens_content         241         245         246         248
##             mean  261.000000  555.500000  396.000000  893.000000
##             sd    244.658946  217.081782                        
##                 
## n_tokens_content         250         251         256         258
##             mean  462.000000  650.000000  116.000000  403.500000
##             sd                544.472222              231.223917
##                 
## n_tokens_content         261         262         264         266
##             mean 2889.000000  253.000000  884.000000  204.000000
##             sd                                                  
##                 
## n_tokens_content         268         269         277         278
##             mean  558.000000  336.000000  381.000000    0.000000
##             sd                                                  
##                 
## n_tokens_content         279         280         285         286
##             mean  670.000000 1499.000000 1026.000000  563.000000
##             sd                                                  
##                 
## n_tokens_content         287         292         294         295
##             mean  474.000000  263.000000  920.000000 1433.000000
##             sd                                                  
##                 
## n_tokens_content         296         300         301         302
##             mean 1572.000000  828.000000 2088.000000 1125.000000
##             sd                410.121933                        
##                 
## n_tokens_content         305         308         309         313
##             mean  499.000000  363.000000  123.000000  573.000000
##             sd                288.499567                        
##                 
## n_tokens_content         317         318         321         322
##             mean  309.000000  746.500000 2184.000000  242.000000
##             sd                656.902200                        
##                 
## n_tokens_content         324         325         326         331
##             mean  548.000000  887.000000  126.000000  143.000000
##             sd                                                  
##                 
## n_tokens_content         336         339         340         341
##             mean  371.000000  141.000000  167.000000  907.000000
##             sd                                        377.595021
##                 
## n_tokens_content         342         343         346         348
##             mean  288.500000  522.000000  334.500000  408.000000
##             sd     30.405592  326.683333  198.697006  230.516811
##                 
## n_tokens_content         349         350         354         356
##             mean  115.000000  183.500000  218.000000  315.000000
##             sd                149.199531   53.740115            
##                 
## n_tokens_content         357         358         365         366
##             mean  330.000000  156.500000  140.000000  926.000000
##             sd     41.012193   38.890873              443.690207
##                 
## n_tokens_content         368         369         371         373
##             mean  182.000000  542.500000  402.500000  411.000000
##             sd                444.770165   47.376154  287.085353
##                 
## n_tokens_content         375         377         378         379
##             mean  257.500000  356.500000  598.000000 1673.000000
##             sd    219.910209  256.679762                        
##                 
## n_tokens_content         380         381         382         383
##             mean  490.000000  373.000000  622.000000  769.000000
##             sd                            455.376767            
##                 
## n_tokens_content         384         386         387         390
##             mean  128.000000  373.000000 1358.000000  415.500000
##             sd                207.889394              137.885822
##                 
## n_tokens_content         391         392         393         395
##             mean  555.000000  489.500000  528.333333  508.500000
##             sd                 36.062446  351.383456  409.414826
##                 
## n_tokens_content         396         397         398         399
##             mean 1160.000000  362.000000  386.500000  684.500000
##             sd                              3.535534  627.203715
##                 
## n_tokens_content         400         401         402         403
##             mean  500.000000  648.333333  229.500000  155.000000
##             sd    471.758413  570.925856  184.554870            
##                 
## n_tokens_content         404         407         408         410
##             mean  311.000000  216.000000  632.500000  854.000000
##             sd                            224.152850  806.101731
##                 
## n_tokens_content         411         412         413         414
##             mean  209.000000  391.250000  375.000000  261.000000
##             sd                171.760250   67.882251            
##                 
## n_tokens_content         416         417         419         420
##             mean  572.800000  995.333333  446.000000  488.000000
##             sd    384.954803  506.707345  318.198052            
##                 
## n_tokens_content         421         422         423         424
##             mean  990.000000  359.000000  311.333333  131.000000
##             sd    114.551299              116.040223            
##                 
## n_tokens_content         425         426         427         428
##             mean  604.333333  317.000000  246.000000  971.000000
##             sd    443.082761                                    
##                 
## n_tokens_content         429         430         431         432
##             mean  395.000000  207.500000  304.000000  916.333333
##             sd    287.358661  129.400541             1283.341082
##                 
## n_tokens_content         434         435         436         437
##             mean  959.000000  408.333333  439.000000  555.333333
##             sd                155.721974  310.600494  387.434296
##                 
## n_tokens_content         438         440         441         444
##             mean 1335.000000  274.333333  308.000000  166.000000
##             sd    889.540331  219.918924   74.953319            
##                 
## n_tokens_content         445         446         447         448
##             mean  575.333333  358.500000  179.000000  789.750000
##             sd    501.463192  116.672619   70.710678  382.866709
##                 
## n_tokens_content         449         450         451         452
##             mean  612.000000  456.666667  402.000000  968.000000
##             sd                321.804806   90.934042            
##                 
## n_tokens_content         454         455         456         458
##             mean  187.333333  378.333333  451.000000  435.500000
##             sd     38.370996  130.500319  378.405426  519.723484
##                 
## n_tokens_content         459         460         461         462
##             mean  759.000000  220.666667  439.666667  436.000000
##             sd                 90.743227  411.801328  167.203469
##                 
## n_tokens_content         463         464         465         466
##             mean  288.333333  702.000000  742.000000  532.000000
##             sd    123.516531                                    
##                 
## n_tokens_content         467         468         469         471
##             mean  481.333333  545.000000  468.750000  303.000000
##             sd    432.775153  198.396909  155.878959   72.505172
##                 
## n_tokens_content         472         473         474         475
##             mean  479.500000  471.500000  424.000000  302.000000
##             sd    341.532575  302.986798              105.697682
##                 
## n_tokens_content         476         477         478         480
##             mean  249.000000  158.000000  513.000000  288.000000
##             sd                            267.286363    2.828427
##                 
## n_tokens_content         482         483         484         485
##             mean  581.500000  215.500000  408.250000  140.000000
##             sd      3.535534   14.849242  131.897372            
##                 
## n_tokens_content         486         488         489         490
##             mean  373.000000  385.000000  398.000000  347.000000
##             sd                123.036580  178.190909            
##                 
## n_tokens_content         492         493         494         495
##             mean  594.333333  283.333333  390.666667  383.000000
##             sd    163.230920  271.846157  217.601317  297.869099
##                 
## n_tokens_content         496         497         498         500
##             mean  207.000000  463.500000  470.400000  441.000000
##             sd      4.242641   94.045202  235.002766  495.094940
##                 
## n_tokens_content         501         502         503         504
##             mean  128.000000  455.000000  360.333333  385.500000
##             sd                            116.980055  315.043383
##                 
## n_tokens_content         505         506         507         508
##             mean  548.000000  426.400000  787.000000  409.000000
##             sd    412.481919  139.083788  569.928066            
##                 
## n_tokens_content         510         511         512         513
##             mean  390.333333  279.666667  214.000000  210.000000
##             sd     86.199381  195.944720              101.823376
##                 
## n_tokens_content         514         515         516         517
##             mean  288.000000  253.000000  436.000000  185.000000
##             sd                118.793939  523.043019            
##                 
## n_tokens_content         518         519         520         521
##             mean  476.000000  261.000000  630.000000  301.000000
##             sd    453.477673                                    
##                 
## n_tokens_content         522         523         525         526
##             mean  466.666667  849.666667  258.500000  526.500000
##             sd    316.939006  830.531356  142.128463  280.835064
##                 
## n_tokens_content         527         528         529         530
##             mean  509.666667  380.666667  636.500000  220.000000
##             sd    417.601564  254.165956  403.307575            
##                 
## n_tokens_content         531         532         533         534
##             mean  482.800000  253.000000  342.400000  667.500000
##             sd    360.302234  114.026313  244.659559  333.047294
##                 
## n_tokens_content         535         536         537         538
##             mean  391.500000  654.250000  542.500000  255.000000
##             sd    194.327044  337.299447  350.795762  167.190012
##                 
## n_tokens_content         539         541         542         544
##             mean  294.333333  273.000000  461.500000  524.333333
##             sd    166.025099  106.066017  182.465522  231.953300
##                 
## n_tokens_content         545         546         547         548
##             mean  542.500000  224.500000  401.000000  294.400000
##             sd    412.243253   40.305087              162.353934
##                 
## n_tokens_content         549         550         552         553
##             mean  532.000000  241.000000 1248.000000  412.500000
##             sd    171.994186   94.752309 1548.563851   21.920310
##                 
## n_tokens_content         555         556         557         558
##             mean  226.000000  675.000000  397.000000  241.000000
##             sd     60.811183  248.344519                        
##                 
## n_tokens_content         559         560         561         562
##             mean  421.000000  346.666667  356.000000  153.000000
##             sd    439.138930  230.942273  226.274170            
##                 
## n_tokens_content         563         564         565         566
##             mean  306.500000  420.500000  510.000000  396.333333
##             sd    286.378246  227.854486  262.436024  193.112057
##                 
## n_tokens_content         567         568         569         570
##             mean  109.000000  594.500000  427.000000  418.666667
##             sd                118.086832   84.852814  384.174873
##                 
## n_tokens_content         571         572         573         574
##             mean  411.333333  391.500000  597.000000  527.400000
##             sd    286.226018  129.400541              198.682662
##                 
## n_tokens_content         575         576         577         578
##             mean  138.400000  612.200000  301.000000  428.250000
##             sd     53.817283  461.399718  139.768857  330.915271
##                 
## n_tokens_content         579         580         581         582
##             mean  614.200000  459.000000  453.333333  447.333333
##             sd    581.130966              437.134152  165.581803
##                 
## n_tokens_content         583         584         585         586
##             mean  288.333333  316.000000  340.800000  575.800000
##             sd    201.455537   47.822589  291.554798  382.899073
##                 
## n_tokens_content         588         589         590         591
##             mean  714.000000  200.000000  483.000000  436.400000
##             sd    120.208153   87.249642  242.055779  170.165508
##                 
## n_tokens_content         592         593         594         595
##             mean  850.000000  266.600000  413.000000  307.000000
##             sd                 89.740181  241.830519            
##                 
## n_tokens_content         596         597         598         599
##             mean  330.666667  327.666667  379.000000  739.000000
##             sd     74.446849  223.795293   90.598013  614.383702
##                 
## n_tokens_content         600         601         602         603
##             mean  180.000000  338.000000  209.000000  356.000000
##             sd                             68.865085  171.502187
##                 
## n_tokens_content         604         605         606         607
##             mean  280.000000  394.250000  288.428571  110.000000
##             sd    124.450793  260.980683  190.480845            
##                 
## n_tokens_content         608         609         610         612
##             mean  479.000000  594.500000  273.333333  356.857143
##             sd    480.449789  224.152850   26.539279  175.252607
##                 
## n_tokens_content         613         614         615         616
##             mean  604.000000  479.166667  588.000000  450.500000
##             sd     57.982756  352.419873               99.702056
##                 
## n_tokens_content         618         619         620         621
##             mean  272.000000  241.000000  341.833333  818.750000
##             sd    196.719767   91.923882   91.933490  455.308229
##                 
## n_tokens_content         622         623         624         625
##             mean  255.500000  505.000000  446.750000  443.000000
##             sd    115.258405  246.470079  220.922875            
##                 
## n_tokens_content         626         627         628         629
##             mean  436.000000  379.000000  367.333333  286.000000
##             sd    301.844331              231.692325    8.888194
##                 
## n_tokens_content         630         631         632         633
##             mean  565.333333  232.000000  501.000000  450.000000
##             sd    416.322391  109.421205   99.378066  332.340187
##                 
## n_tokens_content         634         635         636         637
##             mean  256.000000  450.428571  508.500000  143.500000
##             sd     66.468037  297.393598  330.218867  111.015765
##                 
## n_tokens_content         638         639         640         641
##             mean  271.500000  477.000000  403.200000  618.000000
##             sd     45.961941  327.131690  217.524022            
##                 
## n_tokens_content         642         643         644         645
##             mean  573.250000  318.000000  267.000000  713.333333
##             sd    346.465366  162.994887  178.224577  485.552332
##                 
## n_tokens_content         646         647         648         649
##             mean  436.333333  225.000000  313.800000  397.000000
##             sd    333.473137              137.808563   96.771208
##                 
## n_tokens_content         650         651         652         653
##             mean  392.500000  248.750000  791.000000   48.000000
##             sd    353.729181   61.910554                        
##                 
## n_tokens_content         654         655         656         657
##             mean  343.333333  284.000000  468.000000  177.375000
##             sd    232.323768   86.267027  254.489293   52.202730
##                 
## n_tokens_content         658         659         660         661
##             mean  503.200000  231.333333  254.000000  650.800000
##             sd    337.290972   67.678160   21.571586  333.148916
##                 
## n_tokens_content         662         663         664         665
##             mean  663.666667  713.333333  558.000000 1477.000000
##             sd    547.098102  435.063597  319.612265            
##                 
## n_tokens_content         666         667         668         669
##             mean  192.000000  249.666667  722.000000  663.500000
##             sd                130.500319  589.727056  242.537626
##                 
## n_tokens_content         670         671         672         673
##             mean  429.000000  402.750000  394.333333  381.666667
##             sd    213.261967  356.536464   95.038589  189.074941
##                 
## n_tokens_content         674         675         676         677
##             mean  440.666667  297.000000  500.333333  273.000000
##             sd    173.384928  163.035272  336.631351  144.761873
##                 
## n_tokens_content         678         679         680         681
##             mean  473.000000  312.750000  441.000000  284.571429
##             sd    277.501351  125.770625  304.560339  181.347601
##                 
## n_tokens_content         682         683         684         685
##             mean  551.000000  423.750000  292.500000 1073.000000
##             sd    396.571305  207.135020  238.294985   22.627417
##                 
## n_tokens_content         686         687         688         689
##             mean  296.500000  291.500000  546.000000  577.800000
##             sd    148.518237  173.790103  568.949031  438.503364
##                 
## n_tokens_content         690         691         692         693
##             mean  254.333333  189.333333  863.500000  352.333333
##             sd     74.182657  119.223879  687.936770   96.500432
##                 
## n_tokens_content         694         695         696         697
##             mean  316.500000  666.000000  330.000000  136.000000
##             sd    201.371133  625.082395  179.428723   73.013697
##                 
## n_tokens_content         698         699         700         701
##             mean  471.142857  523.333333  401.250000  399.333333
##             sd    317.377498  363.241426  222.369625  232.200345
##                 
## n_tokens_content         702         703         704         705
##             mean  192.000000  411.666667  574.333333  295.500000
##             sd     72.124892  298.128049  525.591413  102.223611
##                 
## n_tokens_content         706         707         708         709
##             mean  425.666667  265.500000  946.000000  514.333333
##             sd    281.055748  121.541488  626.496608  434.495493
##                 
## n_tokens_content         710         711         712         713
##             mean  477.571429  388.000000  467.428571  628.500000
##             sd    340.457465  415.772774  168.721523  443.358019
##                 
## n_tokens_content         714         715         716         717
##             mean  688.666667  590.500000  976.666667  363.000000
##             sd    155.326538  605.500619  742.685891  197.112912
##                 
## n_tokens_content         718         719         720         721
##             mean  166.750000  183.666667  466.600000  340.000000
##             sd     78.436280  145.486540  337.900577            
##                 
## n_tokens_content         722         723         724         725
##             mean  347.000000  212.000000  240.000000  269.800000
##             sd    123.036580                          218.188451
##                 
## n_tokens_content         726         727         728         729
##             mean  280.333333  316.833333  409.166667  546.400000
##             sd    176.822698  227.719491  155.362050  200.958453
##                 
## n_tokens_content         730         731         732         733
##             mean  292.090909  431.833333  337.000000  440.333333
##             sd    157.394062  163.863866  255.850738  533.372165
##                 
## n_tokens_content         734         735         736         737
##             mean  356.500000  357.142857  402.000000  233.000000
##             sd      9.192388  255.402577  309.157727   62.697687
##                 
## n_tokens_content         738         739         740         741
##             mean  407.000000  224.500000  232.500000  555.666667
##             sd    189.625948  126.572114  164.539053  145.376293
##                 
## n_tokens_content         742         743         744         745
##             mean  547.714286  189.000000  432.000000  347.000000
##             sd    320.707922  124.450793  283.429886  153.941547
##                 
## n_tokens_content         746         748         749         750
##             mean  366.333333  678.000000  552.000000  287.571429
##             sd    243.881665  381.023621  120.208153  128.558491
##                 
## n_tokens_content         751         752         753         754
##             mean  482.750000  421.666667  376.200000  402.600000
##             sd    222.524958  272.721011  148.550328  351.463085
##                 
## n_tokens_content         755         756         757         758
##             mean  473.666667  416.800000  841.666667  136.500000
##             sd    601.571830  342.694762  889.109817   96.873629
##                 
## n_tokens_content         759         760         761         762
##             mean  676.600000  179.250000  288.333333  267.500000
##             sd    833.177832   52.034444   95.442828   34.648232
##                 
## n_tokens_content         763         764         765         766
##             mean  364.600000  234.000000  207.750000  209.000000
##             sd    188.267894  181.287985  136.670833            
##                 
## n_tokens_content         767         768         769         770
##             mean  662.750000  815.000000  563.000000  249.500000
##             sd    547.911413 1002.510848  339.452500   28.629821
##                 
## n_tokens_content         771         772         773         774
##             mean  200.000000  270.000000  338.000000  730.600000
##             sd     94.860424   66.468037  286.117691  836.361644
##                 
## n_tokens_content         775         776         777         778
##             mean  406.714286  165.000000  439.000000  972.000000
##             sd    203.135188   96.166522  178.190909            
##                 
## n_tokens_content         779         780         781         782
##             mean  106.500000  360.000000  312.000000  456.750000
##             sd     16.263456                          618.953620
##                 
## n_tokens_content         783         784         785         786
##             mean  573.888889 1315.500000  527.750000  340.750000
##             sd    600.325421 1115.107394  105.319751  142.925097
##                 
## n_tokens_content         787         788         789         790
##             mean  712.200000  399.000000  569.800000  334.555556
##             sd    643.485198   83.468557  483.007971  332.198401
##                 
## n_tokens_content         791         792         793         794
##             mean  671.500000  359.875000  719.000000  368.714286
##             sd    547.921223  181.305927              140.802124
##                 
## n_tokens_content         795         796         797         798
##             mean  374.200000  327.000000  267.666667  204.000000
##             sd    290.504217  134.350288  218.532225  123.432843
##                 
## n_tokens_content         799         800         801         802
##             mean  462.750000  287.600000  266.000000  246.428571
##             sd    298.635089  240.958088  135.709248  195.416527
##                 
## n_tokens_content         803         804         805         806
##             mean  494.000000  403.600000  577.166667  401.000000
##             sd    333.754401  291.946570  637.056172  281.736283
##                 
## n_tokens_content         807         808         809         810
##             mean  459.750000  262.166667  429.666667  631.000000
##             sd    185.941523   81.612295  296.153789  662.562073
##                 
## n_tokens_content         811         812         813         814
##             mean  534.166667  343.750000  247.500000  383.500000
##             sd    536.144166  234.234035  111.015765  251.022907
##                 
## n_tokens_content         815         816         817         818
##             mean  608.000000  440.400000  526.600000  359.200000
##             sd    583.486075  170.608616  318.126233  257.623174
##                 
## n_tokens_content         819         820         821         822
##             mean  218.666667  200.500000  548.000000  300.200000
##             sd    195.269899  168.998521  575.672071  225.893116
##                 
## n_tokens_content         823         824         825         826
##             mean  385.750000  429.800000  385.000000  292.500000
##             sd    327.372985  379.768614  249.697595   51.618795
##                 
## n_tokens_content         827         828         829         830
##             mean  406.666667  514.000000  193.333333  750.333333
##             sd    259.150664  223.309949   35.921210  295.672679
##                 
## n_tokens_content         831         832         833         834
##             mean  290.571429  434.833333  463.857143  360.600000
##             sd    108.883511  339.871397  241.767401  116.244570
##                 
## n_tokens_content         835         836         837         838
##             mean  548.250000  527.000000  515.000000  421.714286
##             sd    508.408874  413.039950  412.970943  231.497094
##                 
## n_tokens_content         839         840         841         842
##             mean  242.800000  505.600000  611.500000  614.500000
##             sd    150.539696  216.381145  583.363094  152.027958
##                 
## n_tokens_content         843         844         845         846
##             mean  265.800000  375.800000  369.428571  494.500000
##             sd     97.111791  309.019740  187.236799  382.390289
##                 
## n_tokens_content         847         848         849         850
##             mean  182.000000  205.000000  325.000000  215.333333
##             sd                 93.338095  270.370117  172.442261
##                 
## n_tokens_content         851         852         853         854
##             mean  565.250000  292.500000  813.000000  311.750000
##             sd    394.257424   34.452866  941.439855  123.879982
##                 
## n_tokens_content         855         856         857         858
##             mean  479.000000  697.500000  540.000000  497.750000
##             sd    293.737298  674.562303  320.926783  235.508492
##                 
## n_tokens_content         859         860         861         862
##             mean  396.500000  507.600000  510.000000  589.333333
##             sd    230.924013  617.141637  206.116472  421.405189
##                 
## n_tokens_content         863         864         865         866
##             mean  466.400000  384.666667  168.000000  610.333333
##             sd    508.546261  152.251984              325.724321
##                 
## n_tokens_content         867         868         869         870
##             mean  544.750000  298.000000  552.250000  507.500000
##             sd    257.858327  232.815377  384.376877  341.086011
##                 
## n_tokens_content         871         872         873         874
##             mean  441.400000  668.000000  614.600000  334.200000
##             sd    188.677768  585.695143  239.965206   81.149245
##                 
## n_tokens_content         875         876         877         878
##             mean  832.500000  293.250000  540.250000  328.142857
##             sd    840.749963  153.638917  198.488245  194.060496
##                 
## n_tokens_content         879         880         881         882
##             mean  285.000000  468.571429  423.500000  513.750000
##             sd                255.417865  154.856385  370.568370
##                 
## n_tokens_content         883         884         885         886
##             mean  413.333333  212.600000  394.666667  303.750000
##             sd     74.002252  144.482871  217.237965  130.874940
##                 
## n_tokens_content         887         888         889         890
##             mean  194.333333  190.500000  850.166667  530.333333
##             sd    200.495054   26.162951  828.930978  457.855290
##                 
## n_tokens_content         891         892         894         895
##             mean  531.857143  296.400000  377.400000  361.714286
##             sd    277.377858  157.008917  186.895158  222.511958
##                 
## n_tokens_content         896         897         898         899
##             mean  342.400000  385.000000  540.250000  476.000000
##             sd    168.322013  223.582200  372.328148  267.239967
##                 
## n_tokens_content         900         901         902         903
##             mean  370.000000  513.666667  414.000000  548.000000
##             sd    231.765686  344.890321  329.643747  561.737661
##                 
## n_tokens_content         904         905         906         907
##             mean  455.800000  449.400000  881.500000  378.125000
##             sd    308.087163  290.850993  122.329473  292.736077
##                 
## n_tokens_content         908         909         910         911
##             mean  348.500000  362.428571  575.750000  613.000000
##             sd     62.932504  148.943901  496.347576  306.812646
##                 
## n_tokens_content         912         913         914         915
##             mean  302.666667  463.285714  529.714286  491.800000
##             sd    105.331224  217.466254  452.238033  283.803101
##                 
## n_tokens_content         916         917         918         919
##             mean  490.714286  522.333333  304.222222  468.800000
##             sd    295.450906  757.324941  201.961492  332.794531
##                 
## n_tokens_content         920         921         922         923
##             mean  349.000000  510.500000  467.666667  266.000000
##             sd    250.305813  181.726443  477.324907  184.323990
##                 
## n_tokens_content         924         925         926         927
##             mean  835.875000  392.666667  350.600000  322.500000
##             sd    670.915459  248.661081  237.684244   94.045202
##                 
## n_tokens_content         928         929         930         931
##             mean  620.600000  240.000000  407.166667  548.000000
##             sd    656.014710  121.622366  355.728220            
##                 
## n_tokens_content         932         933         934         935
##             mean  613.666667  451.166667  598.000000  439.000000
##             sd    212.003145  266.515603  520.969865   39.849718
##                 
## n_tokens_content         936         937         938         939
##             mean  430.333333  313.000000  243.500000  471.900000
##             sd    199.038522  130.598622  116.672619  532.769170
##                 
## n_tokens_content         940         941         942         943
##             mean  573.600000  642.000000  752.600000  145.666667
##             sd    197.669674              417.799952  172.395862
##                 
## n_tokens_content         944         945         946         947
##             mean  375.750000  613.333333  261.000000  188.000000
##             sd    110.294681  264.953455   73.446579   50.113205
##                 
## n_tokens_content         948         949         950         951
##             mean  457.000000  615.000000  602.714286  526.142857
##             sd                289.418382  766.563264  241.079122
##                 
## n_tokens_content         952         953         954         955
##             mean  351.400000  250.714286  561.800000  653.666667
##             sd    167.376223  137.213598  455.158983  246.692791
##                 
## n_tokens_content         956         957         958         959
##             mean  487.833333  407.428571  339.333333  407.750000
##             sd    382.108580  233.812501  241.268177  386.548294
##                 
## n_tokens_content         960         961         962         963
##             mean  341.250000  137.500000  363.000000  361.500000
##             sd    195.073277   43.133514  144.616735  111.308880
##                 
## n_tokens_content         964         965         966         967
##             mean  534.166667  488.500000  381.500000  476.750000
##             sd    462.620975  384.248617  361.940741  243.246617
##                 
## n_tokens_content         968         969         970         971
##             mean  372.000000  331.666667  454.428571  432.500000
##             sd    162.486923  178.755326  250.938809  136.552920
##                 
## n_tokens_content         972         973         974         975
##             mean  579.285714  485.333333  398.500000  252.000000
##             sd    313.350025  347.351503  139.300036            
##                 
## n_tokens_content         976         977         978         979
##             mean  490.000000  533.333333  451.200000  277.222222
##             sd     99.015150   50.816664  294.541508  191.456116
##                 
## n_tokens_content         980         981         982         983
##             mean  385.000000  313.666667  138.000000  349.750000
##             sd    120.623381  239.886084  195.161472  259.914134
##                 
## n_tokens_content         984         985         986         987
##             mean  542.333333  568.333333 1153.500000  388.142857
##             sd    407.189227   78.945129  812.784719  279.350096
##                 
## n_tokens_content         988         989         990         991
##             mean  399.000000  318.400000  404.125000  581.142857
##             sd    118.793939  117.302174  447.047277  444.001287
##                 
## n_tokens_content         992         993         994         995
##             mean  349.875000  231.500000  402.400000  351.000000
##             sd    136.838213  146.371104  322.222439  128.693434
##                 
## n_tokens_content         996         997         998         999
##             mean  939.000000  666.333333  653.636364  289.000000
##             sd                365.902082  498.079968  128.418586
##                 
## n_tokens_content        1000        1100        1200        1300
##             mean  462.888372  442.189011  469.911504  529.046575
##             sd    366.744234  334.124762  372.118798  433.668742
##                 
## n_tokens_content        1400        1500        1600        1700
##             mean  485.280105  465.314815  505.747126  518.049383
##             sd    365.205968  353.831850  436.372491  432.106332
##                 
## n_tokens_content        1800        1900        2000        2100
##             mean  474.314286  462.353488  537.983871  523.938144
##             sd    363.894796  390.552108  450.260963  410.421919
##                 
## n_tokens_content        2200        2300        2400        2500
##             mean  581.936047  519.375000  553.974790  599.000000
##             sd    527.810939  440.153255  489.414428  524.460379
##                 
## n_tokens_content        2600        2700        2800        2900
##             mean  465.675926  588.964912  553.948454  550.752475
##             sd    449.011954  565.529166  415.179790  497.385714
##                 
## n_tokens_content        3000        3100        3200        3300
##             mean  501.287500  468.111111  489.455556  526.216667
##             sd    426.537730  359.633564  349.966649  461.665448
##                 
## n_tokens_content        3400        3500        3600        3700
##             mean  460.650000  538.360656  491.595238  474.859649
##             sd    373.266257  430.569237  400.505233  384.116028
##                 
## n_tokens_content        3800        3900        4000        4100
##             mean  568.367347  522.685185  453.228571  428.116279
##             sd    569.497026  437.892156  392.225707  301.041542
##                 
## n_tokens_content        4200        4300        4400        4500
##             mean  430.416667  463.384615  557.666667  464.069767
##             sd    293.569799  426.710404  314.764674  409.123884
##                 
## n_tokens_content        4600        4700        4800        4900
##             mean  531.757576  523.346154  423.575000  634.687500
##             sd    488.837462  395.307267  350.938514  434.133504
##                 
## n_tokens_content        5000        5100        5200        5300
##             mean  612.258065  480.034483  576.448276  732.739130
##             sd    495.645099  384.623144  493.239987  667.252727
##                 
## n_tokens_content        5400        5500        5600        5700
##             mean  592.238095  610.190476  576.000000  728.181818
##             sd    389.954472  502.626364  373.653917  656.739249
##                 
## n_tokens_content        5800        5900        6000        6100
##             mean  656.833333  635.000000  785.954545  494.944444
##             sd    636.452230  474.525553  804.222871  503.776850
##                 
## n_tokens_content        6200        6300        6400        6500
##             mean  543.411765  465.875000  365.294118  460.478261
##             sd    465.403596  289.067212  282.916676  371.358424
##                 
## n_tokens_content        6600        6700        6800        6900
##             mean  611.176471  357.923077  522.312500  555.611111
##             sd    677.766206  217.913003  429.551661  636.130965
##                 
## n_tokens_content        7000        7100        7200        7300
##             mean  308.750000  576.083333  643.714286  656.538462
##             sd    184.871191  385.872673  964.850521  671.895902
##                 
## n_tokens_content        7400        7500        7600        7700
##             mean  504.388889  309.125000  494.454545  639.181818
##             sd    387.175160  128.234648  319.315005 1034.898625
##                 
## n_tokens_content        7800        7900        8000        8100
##             mean  424.153846  517.100000  497.750000  347.600000
##             sd    525.331141  324.267876  341.582979  296.999140
##                 
## n_tokens_content        8200        8300        8400        8500
##             mean  505.666667  306.000000  497.285714  523.428571
##             sd    454.917300  224.681107  673.589814  323.224822
##                 
## n_tokens_content        8600        8700        8800        8900
##             mean  558.166667  457.285714  445.500000  208.600000
##             sd    297.808943  376.869436  263.785898  143.882939
##                 
## n_tokens_content        9000        9100        9200        9300
##             mean  524.333333  305.666667  594.000000  275.600000
##             sd    305.725803  212.249853  852.829408   35.851081
##                 
## n_tokens_content        9400        9500        9600        9700
##             mean  410.500000  509.714286  654.250000  609.833333
##             sd    254.652144  370.423053  483.674391  457.316448
##                 
## n_tokens_content        9800        9900       10000       10100
##             mean  543.444444  475.750000  587.714286  526.600000
##             sd    321.079862  243.497262  761.300360  451.962720
##                 
## n_tokens_content       10200       10300       10400       10500
##             mean  838.000000  424.666667  862.666667  354.500000
##             sd    620.449837  312.816027  576.588126  296.277741
##                 
## n_tokens_content       10600       10700       10800       10900
##             mean  365.750000  350.600000  598.833333 1026.750000
##             sd    346.301582  219.992525  325.397859 1027.922622
##                 
## n_tokens_content       11000       11100       11200       11300
##             mean  396.400000  459.000000 1066.000000  340.666667
##             sd    422.829516  434.000000 1196.424674  292.524073
##                 
## n_tokens_content       11400       11500       11600       11700
##             mean  353.333333  789.500000  451.000000  452.875000
##             sd    169.940774  458.912301              316.596831
##                 
## n_tokens_content       11800       11900       12000       12100
##             mean  358.250000  571.500000  785.833333  421.666667
##             sd    163.355186  506.208949  754.216260  103.219830
##                 
## n_tokens_content       12200       12300       12400       12500
##             mean  254.500000  403.222222  843.666667  358.800000
##             sd     78.488853  289.730382  754.907588  317.533778
##                 
## n_tokens_content       12600       12700       12800       12900
##             mean  409.000000 1005.000000  629.000000  233.000000
##             sd    226.274170  722.663130  408.249107  118.793939
##                 
## n_tokens_content       13000       13100       13200       13300
##             mean  356.250000  199.000000  568.500000  263.666667
##             sd    425.683274               10.606602  182.486529
##                 
## n_tokens_content       13400       13500       13600       13700
##             mean  275.000000  576.000000  741.000000  258.000000
##             sd    131.388736  282.842712  533.158513   84.958814
##                 
## n_tokens_content       13800       13900       14000       14100
##             mean  551.000000  403.000000  306.000000  235.000000
##             sd    496.388960  309.390261                        
##                 
## n_tokens_content       14200       14300       14400       14500
##             mean  353.000000  413.000000  746.000000  179.750000
##             sd                168.272101  382.842004   74.181646
##                 
## n_tokens_content       14600       14700       14800       14900
##             mean  224.000000  334.500000  571.750000  233.500000
##             sd                 56.970753  488.448820  239.709199
##                 
## n_tokens_content       15000       15200       15300       15400
##             mean  500.000000  351.750000  200.000000  396.750000
##             sd    399.400384   43.361850  156.977705  348.761977
##                 
## n_tokens_content       15500       15600       15700       15800
##             mean  250.000000  658.500000  657.750000  190.000000
##             sd                311.834091  498.481946   49.497475
##                 
## n_tokens_content       15900       16100       16200       16300
##             mean  532.000000  496.000000  708.750000  912.750000
##             sd    193.747258  324.531971  509.842051 1399.444265
##                 
## n_tokens_content       16400       16500       16600       16700
##             mean 1312.000000  489.500000  283.750000  341.666667
##             sd   1265.721138  217.081782  169.941902  160.113501
##                 
## n_tokens_content       16800       16900       17000       17100
##             mean  339.666667 1391.500000  135.000000  384.200000
##             sd    211.284958  697.914393              472.818358
##                 
## n_tokens_content       17200       17300       17400       17500
##             mean  918.000000  284.500000  566.000000  330.500000
##             sd                  9.192388              171.826948
##                 
## n_tokens_content       17600       17800       17900       18000
##             mean  240.000000  326.500000 1461.666667  828.000000
##             sd     70.064256   53.033009 1421.338923  688.722005
##                 
## n_tokens_content       18100       18200       18300       18400
##             mean  343.000000  542.000000  138.000000  275.000000
##             sd    107.140095   21.213203              122.670290
##                 
## n_tokens_content       18700       18900       19100       19200
##             mean  277.000000  327.000000  263.000000 1840.000000
##             sd                                                  
##                 
## n_tokens_content       19400       19800       20200       20300
##             mean  254.000000   88.000000  626.500000  344.000000
##             sd                 14.142136  713.470742            
##                 
## n_tokens_content       20500       20600       20700       20800
##             mean  516.000000  735.000000  211.500000  153.500000
##             sd                 26.870058   19.091883    4.949747
##                 
## n_tokens_content       20900       21000       21100       21400
##             mean  610.000000  117.000000 1195.000000  244.500000
##             sd    484.446075                           62.932504
##                 
## n_tokens_content       21500       21700       21800       21900
##             mean  250.500000  165.000000  165.000000  211.000000
##             sd    241.123412    8.485281                        
##                 
## n_tokens_content       22000       22100       22200       22300
##             mean  232.500000  855.000000  875.000000  220.333333
##             sd     23.334524  779.231673              176.692765
##                 
## n_tokens_content       23000       23100       23300       23500
##             mean  839.000000  478.000000  217.000000  261.666667
##             sd                                        174.061292
##                 
## n_tokens_content       23600       23700       23800       23900
##             mean  670.000000  360.500000  238.000000  599.000000
##             sd                 23.334524                        
##                 
## n_tokens_content       24000       24200       24300       24400
##             mean  311.000000  356.000000  812.000000  321.000000
##             sd                                        244.658946
##                 
## n_tokens_content       24500       24800       24900       25000
##             mean  501.666667  379.000000  227.000000  116.000000
##             sd    515.763835                                    
##                 
## n_tokens_content       25100       25200       25300       25700
##             mean  372.000000  411.000000  607.500000  154.000000
##             sd                297.726384  494.267640            
##                 
## n_tokens_content       26200       26300       26400       26600
##             mean  803.000000  123.000000  482.666667  492.000000
##             sd                            394.406305            
##                 
## n_tokens_content       26900       27000       27300       27400
##             mean  174.000000  167.000000  966.500000  143.000000
##             sd                 94.752309  624.375288            
##                 
## n_tokens_content       27700       27900       28200       28300
##             mean  308.500000  185.000000  250.666667  422.000000
##             sd    174.655375               96.717803            
##                 
## n_tokens_content       28600       28900       30000       30200
##             mean 1283.000000  257.000000  297.000000 1098.000000
##             sd                                        195.161472
##                 
## n_tokens_content       30400       31400       31600       32200
##             mean  477.000000  906.000000  199.000000  257.000000
##             sd                                                  
##                 
## n_tokens_content       32600       32700       33100       33900
##             mean  172.000000  524.000000  416.000000  401.000000
##             sd                                                  
##                 
## n_tokens_content       34900       35100       35300       35800
##             mean   73.000000  162.000000 2442.000000  758.500000
##             sd                                        521.137698
##                 
## n_tokens_content       36100       36200       36700       36800
##             mean  580.000000  235.333333  211.000000  158.000000
##             sd                 90.279197                        
##                 
## n_tokens_content       37400       39200       39400       40100
##             mean  140.000000  548.000000  749.000000  154.000000
##             sd                                                  
##                 
## n_tokens_content       40400       41200       41600       41700
##             mean  164.500000  157.000000   82.000000 1026.000000
##             sd      9.192388                                    
##                 
## n_tokens_content       42200       42600       43100       44700
##             mean  137.000000  302.000000  204.000000  256.000000
##             sd                                                  
##                 
## n_tokens_content       45400       48800       49000       50200
##             mean  880.000000  660.000000  240.000000  405.000000
##             sd                                        359.210245
##                 
## n_tokens_content       51900       53100       53700       54300
##             mean  171.000000  411.000000  186.000000  242.000000
##             sd                                                  
##                 
## n_tokens_content       56400       57600       61500       61600
##             mean 2398.000000  542.000000  217.000000 1167.000000
##             sd                                                  
##                 
## n_tokens_content       62300       65300       68300       71800
##             mean  217.000000  483.000000  389.000000  629.000000
##             sd                                                  
##                 
## n_tokens_content       73100       80400       81200       87000
##             mean 2448.000000  259.000000 4089.000000  293.000000
##             sd                                                  
##                 
## n_tokens_content       93800       97200      104100      112500
##             mean  373.000000  132.000000 1015.000000  954.000000
##             sd                                                  
##                 
## n_tokens_content      118700      144400      196700      210300
##             mean  316.000000  502.000000 1118.000000 3815.000000
##             sd                                                  
##                 
## n_tokens_content      227300      306100      617900      690400
##             mean  506.000000  905.000000  382.000000  893.000000
##             sd                                                  
##                 
## n_tokens_content      843300
##             mean  688.000000
##             sd              
## 
##                
## n_unique_tokens            4           23           41           45
##            mean 0.0000000000 0.5015576316 0.6890459340 0.5529157655
##            sd                                                      
##                
## n_unique_tokens           47           48           51           60
##            mean 0.5470383256 0.6538461507 0.5923809513 0.6933134423
##            sd                                          0.1718288747
##                
## n_unique_tokens           64           66           70           80
##            mean 0.6083584191 0.4762741644 0.6783216736 0.5077452659
##            sd   0.1386276574                                       
##                
## n_unique_tokens           82           84           86           87
##            mean 0.6412824921 0.7028985482 0.6509433942 0.4291428569
##            sd   0.2097755958                                       
##                
## n_unique_tokens           88           90           91           95
##            mean 0.5184702923 0.6343825651 0.5979643751 0.5951974719
##            sd   0.0960950473                           0.1550661694
##                
## n_unique_tokens           97           98           99          102
##            mean 0.8620689507 0.5225505435 0.5680751160 0.3400673398
##            sd                                                      
##                
## n_unique_tokens          106          109          111          116
##            mean 0.5310077509 0.5728155312 0.5906593390 0.5679023825
##            sd                                          0.1141773334
##                
## n_unique_tokens          119          123          127          129
##            mean 0.5416517478 0.5938893635 0.6085858570 0.6031746013
##            sd   0.0039835534 0.0459983263                          
##                
## n_unique_tokens          130          134          135          137
##            mean 0.4650887568 0.5550239221 0.4009779948 0.5953002595
##            sd                                                      
##                
## n_unique_tokens          138          140          141          143
##            mean 0.4996878462 0.5153318066 0.5462822450 0.5831775690
##            sd   0.0671496380 0.0155336963                          
##                
## n_unique_tokens          144          146          149          150
##            mean 0.4831460667 0.4906937386 0.5486862434 0.4594072162
##            sd                                                      
##                
## n_unique_tokens          151          154          158          160
##            mean 0.5865800853 0.4999999995 0.5226860245 0.6052009442
##            sd                                                      
##                
## n_unique_tokens          162          163          168          176
##            mean 0.5292841637 0.5551257243 0.5979020958 0.6045627353
##            sd                                                      
##                
## n_unique_tokens          178          180          181          183
##            mean 0.6357615873 0.5943562600 0.6135607580 0.6666666639
##            sd                             0.0013925681             
##                
## n_unique_tokens          186          190          191          192
##            mean 0.4246079609 0.5374006033 0.4757062142 0.4332977583
##            sd                0.1024258096                          
##                
## n_unique_tokens          196          201          202          205
##            mean 0.4360812420 0.6109589024 0.5647058801 0.6338080780
##            sd                                          0.0864022704
##                
## n_unique_tokens          206          211          213          215
##            mean 0.6013985993 0.5141638973 0.4816291442 0.5866858218
##            sd                0.0176815848 0.0651123480 0.0372517935
##                
## n_unique_tokens          217          218          221          223
##            mean 0.5658634514 0.3085106370 0.5645700730 0.5819672119
##            sd   0.1896977200 0.4362999270 0.0226255022             
##                
## n_unique_tokens          224          226          228          233
##            mean 0.5548386835 0.4037453181 0.6602695643 0.7166407815
##            sd   0.0400555245              0.0343006767 0.0050873638
##                
## n_unique_tokens          236          237          238          240
##            mean 0.6096491215 0.6583755362 0.5360133994 0.5168539316
##            sd                0.0381345120                          
##                
## n_unique_tokens          241          245          246          248
##            mean 0.6681068079 0.5197184351 0.5544303783 0.4269535669
##            sd   0.1930272594 0.0958576063                          
##                
## n_unique_tokens          250          251          256          258
##            mean 0.5488069402 0.5673419974 0.8608695577 0.5520136476
##            sd                0.1604103281              0.0522826279
##                
## n_unique_tokens          261          262          264          266
##            mean 0.3755215576 0.6613545790 0.4114942524 0.6568627419
##            sd                                                      
##                
## n_unique_tokens          268          269          277          278
##            mean 0.5248618775 0.5585585569 0.5660377343 0.0000000000
##            sd                                                      
##                
## n_unique_tokens          279          280          285          286
##            mean 0.4977168942 0.4752010721 0.4328358205 0.3454545448
##            sd                                                      
##                
## n_unique_tokens          287          292          294          295
##            mean 0.5466101683 0.5719999977 0.4732824422 0.4947368418
##            sd                                                      
##                
## n_unique_tokens          296          300          301          302
##            mean 0.4112388248 0.4993060107 0.3746383798 0.4277879338
##            sd                0.0679423171                          
##                
## n_unique_tokens          305          308          309          313
##            mean 0.5112474427 0.6364313246 0.7479674736 0.5326278650
##            sd                0.1740364324                          
##                
## n_unique_tokens          317          318          321          322
##            mean 0.6785714264 0.4273549640 0.4026752766 0.6473029019
##            sd                0.0703490225                          
##                
## n_unique_tokens          324          325          326          331
##            mean 0.5555555545 0.4430523913 0.7154471487 0.6999999950
##            sd                                                      
##                
## n_unique_tokens          336          339          340          341
##            mean 0.5831062654 0.6956521689 0.7636363590 0.4931923957
##            sd                                          0.0499056394
##                
## n_unique_tokens          342          343          346          348
##            mean 0.5948990606 0.5766701103 0.6139462068 0.5455210154
##            sd   0.0518731900 0.1354020114 0.0770390609 0.1073079216
##                
## n_unique_tokens          349          350          354          356
##            mean 0.7589285647 0.7596263318 0.6639958223 0.5654952059
##            sd                0.1562755866 0.1135929642             
##                
## n_unique_tokens          357          358          365          366
##            mean 0.5638464918 0.6599229242 0.7372262720 0.4844492253
##            sd   0.0205778237 0.0095370847              0.0650498626
##                
## n_unique_tokens          368          369          371          373
##            mean 0.6348314571 0.5736800857 0.5744789575 0.5720525393
##            sd                0.1066921157 0.0599186263 0.0586531326
##                
## n_unique_tokens          375          377          378          379
##            mean 0.6906826567 0.6264110156 0.5387205378 0.4474492929
##            sd   0.1324143165 0.0838674833                          
##                
## n_unique_tokens          380          381          382          383
##            mean 0.5655737693 0.5983606541 0.5287925831 0.5052770442
##            sd                             0.1354544974             
##                
## n_unique_tokens          384          386          387          390
##            mean 0.6929133804 0.5754586252 0.4028294859 0.5092355124
##            sd                0.0628630293              0.0107426063
##                
## n_unique_tokens          391          392          393          395
##            mean 0.5227686694 0.5009609002 0.5473657080 0.5664594381
##            sd                0.0956398236 0.0532051124 0.1330647932
##                
## n_unique_tokens          396          397          398          399
##            mean 0.4372256361 0.5734463261 0.5641434166 0.5031616074
##            sd                             0.0039395970 0.0395396043
##                
## n_unique_tokens          400          401          402          403
##            mean 0.5890715093 0.5429797279 0.6050647275 0.6753246709
##            sd   0.1885593681 0.1345936935 0.1585432150             
##                
## n_unique_tokens          404          407          408          410
##            mean 0.5852090013 0.6338028139 0.5473602475 0.4808065489
##            sd                             0.0467744544 0.1274424702
##                
## n_unique_tokens          411          412          413          414
##            mean 0.6267942554 0.5815313394 0.5547008532 0.6563706538
##            sd                0.0404707482 0.0012087298             
##                
## n_unique_tokens          416          417          419          420
##            mean 0.5332047124 0.4641404230 0.5707196186 0.4783505145
##            sd   0.1200489340 0.0565560573 0.1269192956             
##                
## n_unique_tokens          421          422          423          424
##            mean 0.4829285781 0.5533707850 0.5927476771 0.6829268237
##            sd   0.0163033143              0.0749546799             
##                
## n_unique_tokens          425          426          427          428
##            mean 0.4954117311 0.7250859082 0.7021276566 0.4309623426
##            sd   0.2655358269                                       
##                
## n_unique_tokens          429          430          431          432
##            mean 0.6253686099 0.6703238774 0.5775577539 0.5617678855
##            sd   0.1052167955 0.1158078348              0.2360635050
##                
## n_unique_tokens          434          435          436          437
##            mean 0.5021881833 0.5627116933 0.5491064742 0.5591015278
##            sd                0.0244051563 0.1119545753 0.1815020036
##                
## n_unique_tokens          438          440          441          444
##            mean 0.4149747253 0.6471646950 0.5782717829 0.6280487767
##            sd   0.1697207549 0.1328582519 0.0632776956             
##                
## n_unique_tokens          445          446          447          448
##            mean 0.5460043879 0.5452133072 0.6727103149 0.5006884694
##            sd   0.1124781119 0.0024537289 0.0953846879 0.1249680673
##                
## n_unique_tokens          449          450          451          452
##            mean 0.4926350237 0.5321044894 0.5966729326 0.4859813079
##            sd                0.1217394647 0.0455417895             
##                
## n_unique_tokens          454          455          456          458
##            mean 0.6293079711 0.5676001362 0.6302195749 0.6496354459
##            sd   0.0090159399 0.0336530130 0.1695773055 0.2169330702
##                
## n_unique_tokens          459          460          461          462
##            mean 0.4986666660 0.6524451648 0.5876191752 0.5279596693
##            sd                0.0491290635 0.1163516227 0.0866648743
##                
## n_unique_tokens          463          464          465          466
##            mean 0.5832752653 0.4652880348 0.4795640320 0.5358490556
##            sd   0.0540955459                                       
##                
## n_unique_tokens          467          468          469          471
##            mean 0.5532336039 0.5662037140 0.5335754709 0.6233111338
##            sd   0.1177634890 0.0840610065 0.0981872746 0.0576381544
##                
## n_unique_tokens          472          473          474          475
##            mean 0.5435112774 0.5768405204 0.5525672358 0.5957387410
##            sd   0.1701560644 0.1478524820              0.0354198483
##                
## n_unique_tokens          476          477          478          480
##            mean 0.5813008106 0.6298701258 0.5292334746 0.5864571480
##            sd                             0.0099618989 0.0354311991
##                
## n_unique_tokens          482          483          484          485
##            mean 0.5883967675 0.6382377244 0.5605412860 0.7703703647
##            sd   0.0084279951 0.0426097159 0.1017010177             
##                
## n_unique_tokens          486          488          489          490
##            mean 0.5189189175 0.6004432364 0.5650943379 0.6257309923
##            sd                0.0450556659 0.0920572969             
##                
## n_unique_tokens          492          493          494          495
##            mean 0.5101583632 0.6157656188 0.5801173734 0.3710831359
##            sd   0.0489130466 0.1648499607 0.0911574035 0.2485152437
##                
## n_unique_tokens          496          497          498          500
##            mean 0.6426530681 0.5726653099 0.5430636191 0.5846779764
##            sd   0.0152908662 0.0446273819 0.0470766009 0.1536927017
##                
## n_unique_tokens          501          502          503          504
##            mean 0.7265624943 0.4910714275 0.5892851123 0.6239941451
##            sd                             0.0560059367 0.1083997191
##                
## n_unique_tokens          505          506          507          508
##            mean 0.5696810823 0.5430759990 0.5093913227 0.5196078419
##            sd   0.1449679614 0.0670721535 0.1423946906             
##                
## n_unique_tokens          510          511          512          513
##            mean 0.5809665259 0.6077674845 0.4972677568 0.6824212233
##            sd   0.0674323256 0.0879041485              0.1008477309
##                
## n_unique_tokens          514          515          516          517
##            mean 0.5516014215 0.6508556930 0.3694194786 0.5978260837
##            sd                0.1042207526 0.2549753588             
##                
## n_unique_tokens          518          519          520          521
##            mean 0.5944003638 0.5984555961 0.4959349585 0.7252747226
##            sd   0.1574526833                                       
##                
## n_unique_tokens          522          523          525          526
##            mean 0.5560375706 0.4850205101 0.5980174010 0.5557151574
##            sd   0.1643812349 0.0653323200 0.0370331856 0.0741030733
##                
## n_unique_tokens          527          528          529          530
##            mean 0.5698728101 0.6573226968 0.5318888266 0.6074766327
##            sd   0.0933587553 0.1270494273 0.0642633362             
##                
## n_unique_tokens          531          532          533          534
##            mean 0.5762972189 0.6345034081 0.6095488913 0.4813911904
##            sd   0.0715471188 0.0906880176 0.1193710750 0.1273320835
##                
## n_unique_tokens          535          536          537          538
##            mean 0.5657950996 0.4978057945 0.5311271423 0.6369581556
##            sd   0.0987949296 0.0847630349 0.0934993657 0.0864807231
##                
## n_unique_tokens          539          541          542          544
##            mean 0.5766980337 0.6225076212 0.5539355129 0.5539846103
##            sd   0.1391814443 0.0432093154 0.0442092491 0.0845944537
##                
## n_unique_tokens          545          546          547          548
##            mean 0.5114656960 0.6514469905 0.5447570319 0.5862665111
##            sd   0.1474130691 0.0739021473              0.1391086758
##                
## n_unique_tokens          549          550          552          553
##            mean 0.5066935705 0.6870055307 0.6062472953 0.5759402241
##            sd   0.0299341617 0.0599714653 0.1640133075 0.0280077293
##                
## n_unique_tokens          555          556          557          558
##            mean 0.6276749537 0.4802999169 0.5103092770 0.6514522795
##            sd   0.0370116611 0.0548026595                          
##                
## n_unique_tokens          559          560          561          562
##            mean 0.5424941983 0.6109589411 0.5615311136 0.6597222176
##            sd   0.1088440219 0.1007025144 0.0636767478             
##                
## n_unique_tokens          563          564          565          566
##            mean 0.6626321907 0.5631730994 0.5262969430 0.6090372737
##            sd   0.1690636020 0.0358092534 0.0544300638 0.0607373109
##                
## n_unique_tokens          567          568          569          570
##            mean 0.7614678829 0.5216471473 0.5190006120 0.3260063520
##            sd                0.0060093697 0.0008301657 0.2837240344
##                
## n_unique_tokens          571          572          573          574
##            mean 0.6158282940 0.6231350117 0.5317324176 0.5165764622
##            sd   0.1456705686 0.1252198680              0.0493074427
##                
## n_unique_tokens          575          576          577          578
##            mean 0.7118501395 0.4840879266 0.5880882826 0.5803224517
##            sd   0.0640416975 0.1169525033 0.0771325410 0.0929076899
##                
## n_unique_tokens          579          580          581          582
##            mean 0.5666146953 0.5853658524 0.5759210363 0.5817305161
##            sd   0.2170473883              0.1532024081 0.0766919395
##                
## n_unique_tokens          583          584          585          586
##            mean 0.6012301907 0.5775148506 0.6143444159 0.5377575423
##            sd   0.1539588925 0.0127965680 0.1095419757 0.0838376847
##                
## n_unique_tokens          588          589          590          591
##            mean 0.4807565563 0.6321282178 0.5529880325 0.6013847939
##            sd   0.0101892951 0.0883723585 0.0709091030 0.0937790978
##                
## n_unique_tokens          592          593          594          595
##            mean 0.4163701063 0.6251960295 0.5308839366 0.5939597295
##            sd                0.0714366424 0.0498252378             
##                
## n_unique_tokens          596          597          598          599
##            mean 0.5927692333 0.6631247370 0.5410483857 0.5140789610
##            sd   0.0722832244 0.1189836789 0.0585248648 0.1197884649
##                
## n_unique_tokens          600          601          602          603
##            mean 0.5593220307 0.6227544892 0.6585620213 0.5212686516
##            sd                             0.0445103285 0.0904855191
##                
## n_unique_tokens          604          605          606          607
##            mean 0.6058447198 0.5816485492 0.6319724164 0.7499999931
##            sd   0.0363936889 0.0855289575 0.1471269170             
##                
## n_unique_tokens          608          609          610          612
##            mean 0.5644473478 0.5340530424 0.6105606535 0.5811658920
##            sd   0.1198504244 0.0519194816 0.0129802419 0.1143711863
##                
## n_unique_tokens          613          614          615          616
##            mean 0.4421840406 0.5657795443 0.4957118345 0.5503466698
##            sd   0.0383106234 0.1006474282              0.0357090985
##                
## n_unique_tokens          618          619          620          621
##            mean 0.6439761286 0.6124030979 0.5675476225 0.4992632872
##            sd   0.1124004677 0.0767402694 0.0585369065 0.0499981605
##                
## n_unique_tokens          622          623          624          625
##            mean 0.6042393022 0.5238995928 0.5619330270 0.5488372080
##            sd   0.0109574364 0.0842100100 0.0323827702             
##                
## n_unique_tokens          626          627          628          629
##            mean 0.6095115895 0.5238095224 0.6295094091 0.6296715897
##            sd   0.0901202389              0.0820911256 0.0630356083
##                
## n_unique_tokens          630          631          632          633
##            mean 0.4992721209 0.6380345946 0.5024489465 0.5787793407
##            sd   0.1136940418 0.0529075665 0.0551242025 0.1774074460
##                
## n_unique_tokens          634          635          636          637
##            mean 0.6525347513 0.5853990690 0.5362628948 0.7508741180
##            sd   0.0636766923 0.1159938756 0.1202938999 0.0912316025
##                
## n_unique_tokens          638          639          640          641
##            mean 0.6074687727 0.5887347431 0.5500020271 0.4991816686
##            sd   0.0180798567 0.0613297888 0.0928585847             
##                
## n_unique_tokens          642          643          644          645
##            mean 0.5152833643 0.6102348835 0.6160652535 0.5375747468
##            sd   0.0679953863 0.0498842666 0.0820420013 0.1617479612
##                
## n_unique_tokens          646          647          648          649
##            mean 0.5751415482 0.6444444416 0.5660888993 0.5555946002
##            sd   0.1100425568              0.0732702756 0.0605544268
##                
## n_unique_tokens          650          651          652          653
##            mean 0.3736588576 0.5822868142 0.4619289334 0.8444444257
##            sd   0.2527356306 0.0504764218                          
##                
## n_unique_tokens          654          655          656          657
##            mean 0.6418084121 0.6693724404 0.5952187439 0.6720841077
##            sd   0.0726571715 0.0068387144 0.1128940441 0.0486759717
##                
## n_unique_tokens          658          659          660          661
##            mean 0.5812463786 0.5802107936 0.5878483104 0.5212142310
##            sd   0.0924352262 0.0776695118 0.0472050780 0.0735763400
##                
## n_unique_tokens          662          663          664          665
##            mean 0.4985388387 0.5088931849 0.5124578602 0.1655225018
##            sd   0.0938827179 0.0929829567 0.0913319101             
##                
## n_unique_tokens          666          667          668          669
##            mean 0.7105263121 0.6345498962 0.5187766152 0.4859979789
##            sd                0.0714394536 0.0744611079 0.0125717161
##                
## n_unique_tokens          670          671          672          673
##            mean 0.5866078959 0.5975008382 0.5975945165 0.5181665846
##            sd   0.0924536630 0.1136642380 0.0650499557 0.1111628476
##                
## n_unique_tokens          674          675          676          677
##            mean 0.5468045509 0.6382351433 0.5503385264 0.6000109889
##            sd   0.0725264203 0.0887003845 0.0989804261 0.0273387364
##                
## n_unique_tokens          678          679          680          681
##            mean 0.5762321443 0.5968061688 0.5470405023 0.5879779563
##            sd   0.0322036240 0.0775442679 0.1331681094 0.1192952710
##                
## n_unique_tokens          682          683          684          685
##            mean 0.5743651188 0.5356090109 0.6902688135 0.4557499665
##            sd   0.0781582455 0.0677368835 0.0616627495 0.0196427218
##                
## n_unique_tokens          686          687          688          689
##            mean 0.5747429830 0.6334230744 0.5918873199 0.5545776128
##            sd   0.1037671375 0.1251371406 0.2042049572 0.1072007606
##                
## n_unique_tokens          690          691          692          693
##            mean 0.6142405286 0.6626449216 0.4313395846 0.5851747831
##            sd   0.0473390414 0.0845370474 0.1967743185 0.0574210366
##                
## n_unique_tokens          694          695          696          697
##            mean 0.6131089414 0.5083502134 0.6019692508 0.7891587126
##            sd   0.1673662278 0.1410789638 0.0516226536 0.1516961524
##                
## n_unique_tokens          698          699          700          701
##            mean 0.5652224353 0.5569600595 0.5903984632 0.5984621360
##            sd   0.0908003040 0.1170804012 0.0804972279 0.1240377349
##                
## n_unique_tokens          702          703          704          705
##            mean 0.6931449923 0.6090651312 0.5648285897 0.6258168122
##            sd   0.0020020657 0.1333359186 0.1658819303 0.0517732972
##                
## n_unique_tokens          706          707          708          709
##            mean 0.5717672346 0.6442013411 0.4806518273 0.5602024934
##            sd   0.0793072424 0.1295084896 0.0242290351 0.0453791576
##                
## n_unique_tokens          710          711          712          713
##            mean 0.5659410426 0.6703161825 0.5680342513 0.5521599114
##            sd   0.1072263819 0.2120501514 0.0815023305 0.1243628922
##                
## n_unique_tokens          714          715          716          717
##            mean 0.5024294747 0.5972078133 0.4773853947 0.5927468453
##            sd   0.0299941274 0.1661073439 0.0900964820 0.1130292208
##                
## n_unique_tokens          718          719          720          721
##            mean 0.7117892138 0.6716177560 0.4052114428 0.5744047602
##            sd   0.0557418582 0.1756500948 0.2431623407             
##                
## n_unique_tokens          722          723          724          725
##            mean 0.5733118448 0.5333333308 0.6638655434 0.4830963466
##            sd   0.0276811492                           0.2839348759
##                
## n_unique_tokens          726          727          728          729
##            mean 0.6844679628 0.6383238275 0.5547011599 0.5116784481
##            sd   0.1626402518 0.0993851278 0.1079705008 0.0715866684
##                
## n_unique_tokens          730          731          732          733
##            mean 0.6244909407 0.5837553192 0.5872050524 0.6311757034
##            sd   0.0959183050 0.0709748626 0.1099957300 0.1533845522
##                
## n_unique_tokens          734          735          736          737
##            mean 0.5735514151 0.5695034988 0.5735827455 0.6242679241
##            sd   0.0452606871 0.1069554384 0.0875107820 0.0535404085
##                
## n_unique_tokens          738          739          740          741
##            mean 0.5604819345 0.5499054020 0.6660597285 0.5130153140
##            sd   0.0932442088 0.1613541204 0.1119206498 0.0379235967
##                
## n_unique_tokens          742          743          744          745
##            mean 0.4847262348 0.6415806369 0.5863872822 0.5904976117
##            sd   0.1508518026 0.1354718914 0.1103701947 0.0729740354
##                
## n_unique_tokens          746          748          749          750
##            mean 0.6181700097 0.5188284781 0.5017188040 0.5903311963
##            sd   0.0935884317 0.0771627937 0.0236743087 0.1020507157
##                
## n_unique_tokens          751          752          753          754
##            mean 0.5560405505 0.5931698666 0.5936887776 0.5731507368
##            sd   0.1138935722 0.1104655436 0.0743559580 0.1138691658
##                
## n_unique_tokens          755          756          757          758
##            mean 0.5814811749 0.5761057211 0.5399747035 0.7409035700
##            sd   0.1305916179 0.1142843738 0.0888028024 0.1584450848
##                
## n_unique_tokens          759          760          761          762
##            mean 0.5296792880 0.5938569610 0.6042985262 0.5865860987
##            sd   0.1069291431 0.1417889032 0.0399728667 0.0953495840
##                
## n_unique_tokens          763          764          765          766
##            mean 0.5634229095 0.6973506020 0.6889883714 0.5970149224
##            sd   0.0946508021 0.1741236643 0.1782451315             
##                
## n_unique_tokens          767          768          769          770
##            mean 0.5211949726 0.5675603173 0.5552538043 0.6220909129
##            sd   0.1294838513 0.0905820310 0.0979079016 0.0462925683
##                
## n_unique_tokens          771          772          773          774
##            mean 0.6738590718 0.6074358692 0.6223639183 0.5327656829
##            sd   0.0588062557 0.0541700904 0.0960771514 0.1262020576
##                
## n_unique_tokens          775          776          777          778
##            mean 0.5557758100 0.6683038267 0.5840330853 0.5112540187
##            sd   0.0991244475 0.1046011845 0.0561856991             
##                
## n_unique_tokens          779          780          781          782
##            mean 0.7687778696 0.5865384597 0.5803278670 0.6588066022
##            sd   0.0153910852                           0.1708631753
##                
## n_unique_tokens          783          784          785          786
##            mean 0.5747341528 0.4475366464 0.5250804789 0.5420013453
##            sd   0.0957140921 0.1007984023 0.0723084170 0.0433307342
##                
## n_unique_tokens          787          788          789          790
##            mean 0.5076277820 0.5694615256 0.5755913934 0.6047040951
##            sd   0.1529231182 0.0261524558 0.0883972449 0.0897598485
##                
## n_unique_tokens          791          792          793          794
##            mean 0.4817645583 0.5890603267 0.3976945239 0.5681522235
##            sd   0.1314691335 0.1056954918              0.0760498081
##                
## n_unique_tokens          795          796          797          798
##            mean 0.5846086357 0.5669113476 0.6858308041 0.6478530207
##            sd   0.0774165989 0.0181002308 0.0985752129 0.1036195768
##                
## n_unique_tokens          799          800          801          802
##            mean 0.5605850618 0.4305163548 0.6048947385 0.6965462486
##            sd   0.0983326871 0.2855583365 0.1205516031 0.1421731418
##                
## n_unique_tokens          803          804          805          806
##            mean 0.5490084119 0.6133311943 0.6011886977 0.5503776996
##            sd   0.1019440593 0.1180678028 0.1815119586 0.0763302532
##                
## n_unique_tokens          807          808          809          810
##            mean 0.5565680598 0.6194072343 0.5696906735 0.5829630340
##            sd   0.1036676516 0.0474261536 0.1144063352 0.0962574854
##                
## n_unique_tokens          811          812          813          814
##            mean 0.5356290278 0.6074442172 0.6616086512 0.6078384237
##            sd   0.1012843860 0.0993901350 0.0103063184 0.1682784611
##                
## n_unique_tokens          815          816          817          818
##            mean 0.5111383709 0.5591414094 0.5403370345 0.6219161759
##            sd   0.1357200022 0.0535040441 0.0774356065 0.1595458873
##                
## n_unique_tokens          819          820          821          822
##            mean 0.6980511154 0.6563309005 0.5601557306 0.6212038978
##            sd   0.0936945573 0.1501457669 0.1047140763 0.1022822701
##                
## n_unique_tokens          823          824          825          826
##            mean 0.5942714541 0.5767936025 0.6046748781 0.5981673405
##            sd   0.0993296214 0.0949874426 0.1281859702 0.0295291696
##                
## n_unique_tokens          827          828          829          830
##            mean 0.5835758093 0.4888018355 0.6525282546 0.4795240000
##            sd   0.1431662390 0.0434245326 0.0643166012 0.0114906212
##                
## n_unique_tokens          831          832          833          834
##            mean 0.6110350752 0.5677054451 0.5281724641 0.5552721325
##            sd   0.0809190934 0.1104406678 0.0863904026 0.0775653897
##                
## n_unique_tokens          835          836          837          838
##            mean 0.5394084689 0.5272533155 0.5590688126 0.5810563176
##            sd   0.1030534655 0.0966000185 0.0841849261 0.0915151564
##                
## n_unique_tokens          839          840          841          842
##            mean 0.6820148297 0.5538457219 0.5487414708 0.4737728295
##            sd   0.1434938507 0.0966219951 0.0797428800 0.0950503908
##                
## n_unique_tokens          843          844          845          846
##            mean 0.6222241758 0.5574572564 0.5547478358 0.5354188745
##            sd   0.0459707936 0.1018725807 0.0899682047 0.0797175761
##                
## n_unique_tokens          847          848          849          850
##            mean 0.6045197706 0.6825682867 0.5905829351 0.7036820633
##            sd                0.0900859194 0.1213942249 0.1209321953
##                
## n_unique_tokens          851          852          853          854
##            mean 0.5452363294 0.5850126639 0.5481268038 0.5949426009
##            sd   0.0963593295 0.0245926995 0.0869295122 0.0726858570
##                
## n_unique_tokens          855          856          857          858
##            mean 0.5473664180 0.5065020786 0.5601443072 0.5401813073
##            sd   0.0735480850 0.0861277460 0.1003858709 0.0578633410
##                
## n_unique_tokens          859          860          861          862
##            mean 0.5642899631 0.6039855504 0.4780229928 0.5871148511
##            sd   0.0877958569 0.1939792890 0.0445932519 0.1132064857
##                
## n_unique_tokens          863          864          865          866
##            mean 0.5751866728 0.5341625119 0.6687116523 0.4812789817
##            sd   0.0983434604 0.1011095893              0.0600441368
##                
## n_unique_tokens          867          868          869          870
##            mean 0.5440601676 0.6316824862 0.5181149795 0.5564885596
##            sd   0.0802700100 0.1427725267 0.0896400113 0.0979986334
##                
## n_unique_tokens          871          872          873          874
##            mean 0.5450060769 0.5556119168 0.5279296070 0.5860645852
##            sd   0.1110569551 0.1131746887 0.0148581126 0.0240658174
##                
## n_unique_tokens          875          876          877          878
##            mean 0.5195866364 0.6023468112 0.5477342980 0.6039238606
##            sd   0.1087595129 0.0780730556 0.0276609803 0.1102336915
##                
## n_unique_tokens          879          880          881          882
##            mean 0.5978647666 0.5651479249 0.5936915097 0.5382284419
##            sd                0.0911480175 0.0162443384 0.1458978678
##                
## n_unique_tokens          883          884          885          886
##            mean 0.5809644417 0.6385480161 0.5239794516 0.6005752470
##            sd   0.0638902082 0.0802914002 0.1222306174 0.0334959092
##                
## n_unique_tokens          887          888          889          890
##            mean 0.5457406269 0.6696865851 0.5313224721 0.5759359619
##            sd   0.2825724831 0.0403591983 0.0817436160 0.1399021153
##                
## n_unique_tokens          891          892          894          895
##            mean 0.5426685032 0.5988478987 0.5819963542 0.5638862363
##            sd   0.1007885401 0.0841343671 0.0955255792 0.0869262946
##                
## n_unique_tokens          896          897          898          899
##            mean 0.6122309606 0.5997979831 0.5368255806 0.5645177946
##            sd   0.1201908887 0.1093260288 0.0635544531 0.1075688459
##                
## n_unique_tokens          900          901          902          903
##            mean 0.5935947303 0.4524158330 0.5969695478 0.5552173372
##            sd   0.0636828494 0.2195879097 0.1584257904 0.1548010104
##                
## n_unique_tokens          904          905          906          907
##            mean 0.5396499972 0.5394710068 0.4868933336 0.6141046789
##            sd   0.1061619415 0.1305901386 0.0269082560 0.1343321954
##                
## n_unique_tokens          908          909          910          911
##            mean 0.5764021147 0.5762906856 0.5703012704 0.5209483760
##            sd   0.0145162659 0.0979498396 0.1683844840 0.0825975285
##                
## n_unique_tokens          912          913          914          915
##            mean 0.5788049323 0.5134193206 0.5728690750 0.5439103580
##            sd   0.0603411319 0.0553054870 0.1506432291 0.0968216049
##                
## n_unique_tokens          916          917          918          919
##            mean 0.5668929247 0.6106391101 0.6128615397 0.5402824195
##            sd   0.1029277186 0.1139780175 0.0820704430 0.1006744059
##                
## n_unique_tokens          920          921          922          923
##            mean 0.6031089466 0.5770202007 0.6143169863 0.4214715690
##            sd   0.0811492534 0.0874955354 0.0758345565 0.2848117151
##                
## n_unique_tokens          924          925          926          927
##            mean 0.5125198512 0.5675428718 0.5956273760 0.5496211014
##            sd   0.0951656067 0.0692562852 0.1013651718 0.0227913924
##                
## n_unique_tokens          928          929          930          931
##            mean 0.5283255831 0.6234794432 0.6218457599 0.5512104273
##            sd   0.1800248313 0.0199466976 0.1325600991             
##                
## n_unique_tokens          932          933          934          935
##            mean 0.5020833108 0.5583524460 0.5523673907 0.5666347169
##            sd   0.1037307148 0.1235051853 0.1245886769 0.0469869004
##                
## n_unique_tokens          936          937          938          939
##            mean 0.5647772859 0.5907722065 0.6314667311 0.6112239125
##            sd   0.1227937650 0.0867357029 0.1083397879 0.1303154638
##                
## n_unique_tokens          940          941          942          943
##            mean 0.5076859733 0.4663536769 0.4948128914 0.4426276503
##            sd   0.0168508460              0.1022209002 0.4022039818
##                
## n_unique_tokens          944          945          946          947
##            mean 0.5443359263 0.5098687368 0.6340486742 0.6311719604
##            sd   0.0490344057 0.0223152659 0.0907391073 0.0414969264
##                
## n_unique_tokens          948          949          950          951
##            mean 0.5176991139 0.5386635798 0.4566202244 0.5265378585
##            sd                0.0496116016 0.2210532100 0.0948169467
##                
## n_unique_tokens          952          953          954          955
##            mean 0.6154226555 0.6139956957 0.5605589062 0.4147987906
##            sd   0.0785333022 0.1057724988 0.1204372770 0.2082550104
##                
## n_unique_tokens          956          957          958          959
##            mean 0.5587879443 0.5991757239 0.6233949003 0.5996702445
##            sd   0.0802753895 0.1313768720 0.1669567692 0.1272222741
##                
## n_unique_tokens          960          961          962          963
##            mean 0.5995467423 0.7170139840 0.5780078459 0.5983745645
##            sd   0.0833312316 0.0565619730 0.0693432396 0.1038186335
##                
## n_unique_tokens          964          965          966          967
##            mean 0.5369126548 0.5521890468 0.6314415995 0.5569382424
##            sd   0.0529787765 0.1606816414 0.1159855507 0.0641677680
##                
## n_unique_tokens          968          969          970          971
##            mean 0.5768154472 0.5838570261 0.5535558877 0.5381106279
##            sd   0.0689707398 0.0917988751 0.0700151377 0.0700271384
##                
## n_unique_tokens          972          973          974          975
##            mean 0.5862967738 0.5816669697 0.5952924436 0.6814516102
##            sd   0.1624666216 0.1344451462 0.0123523069             
##                
## n_unique_tokens          976          977          978          979
##            mean 0.4366242178 0.5364258788 0.5927718142 0.6450175337
##            sd   0.0963395805 0.0374635103 0.0988986877 0.1392809420
##                
## n_unique_tokens          980          981          982          983
##            mean 0.5653264774 0.6505881048 0.3186813175 0.5998204253
##            sd   0.0692752096 0.1388084399 0.4506834413 0.1118427060
##                
## n_unique_tokens          984          985          986          987
##            mean 0.5347593096 0.5185825207 0.4651760183 0.5744294636
##            sd   0.1013150745 0.0343251045 0.0679114367 0.1224380849
##                
## n_unique_tokens          988          989          990          991
##            mean 0.5674667664 0.6073259245 0.6287581167 0.5254854009
##            sd   0.1029508694 0.0538485044 0.1296560686 0.0793698812
##                
## n_unique_tokens          992          993          994          995
##            mean 0.6023737912 0.6252032483 0.5953985898 0.5938802360
##            sd   0.0645330848 0.0822083466 0.1028899757 0.0106558968
##                
## n_unique_tokens          996          997          998          999
##            mean 0.4330453559 0.5490161963 0.5553191001 0.6226043758
##            sd                0.0607465715 0.1289084313 0.0972562209
##                
## n_unique_tokens         1000         1100         1200         1300
##            mean 0.5685790863 0.5697213713 0.5655041480 0.5552309321
##            sd   0.1192321382 0.1138466899 0.1128186843 0.1099399187
##                
## n_unique_tokens         1400         1500         1600         1700
##            mean 0.5625593751 0.5605288683 0.5542300293 0.5631754845
##            sd   0.1061478737 0.1189993076 0.1174366050 0.1096593001
##                
## n_unique_tokens         1800         1900         2000         2100
##            mean 0.5511411385 0.5652850160 0.5525703839 0.5457573245
##            sd   0.1218130571 0.1233686735 0.1284788960 0.1202791208
##                
## n_unique_tokens         2200         2300         2400         2500
##            mean 0.5428592282 0.5455653170 0.5552069738 0.5394292520
##            sd   0.1185686243 0.1128915284 0.1175030211 0.1199048162
##                
## n_unique_tokens         2600         2700         2800         2900
##            mean 0.5666189637 0.5401230885 0.5416766916 0.5353100405
##            sd   0.1190025064 0.1104788631 0.1189772367 0.1180007953
##                
## n_unique_tokens         3000         3100         3200         3300
##            mean 0.5614441808 0.5587099872 0.5592403924 0.5509405030
##            sd   0.1091647251 0.1360207539 0.1212562532 0.1357204831
##                
## n_unique_tokens         3400         3500         3600         3700
##            mean 0.5670952205 0.5480860957 0.5549645333 0.5697515478
##            sd   0.1412277520 0.1267011594 0.1514420704 0.1024894818
##                
## n_unique_tokens         3800         3900         4000         4100
##            mean 0.5501344492 0.5340414946 0.5733572684 0.5645114952
##            sd   0.1011153940 0.1360636291 0.1168327109 0.0898576224
##                
## n_unique_tokens         4200         4300         4400         4500
##            mean 0.5727244151 0.5748022708 0.5088285487 0.5560179109
##            sd   0.1160599428 0.1214321928 0.1120076361 0.1670921449
##                
## n_unique_tokens         4600         4700         4800         4900
##            mean 0.5459627648 0.5294962012 0.5748902866 0.5150857306
##            sd   0.1588506291 0.1665852239 0.1459814945 0.1392942999
##                
## n_unique_tokens         5000         5100         5200         5300
##            mean 0.5029731750 0.5642660019 0.5531435034 0.5336885131
##            sd   0.1531581585 0.0919008341 0.1089851169 0.1160088689
##                
## n_unique_tokens         5400         5500         5600         5700
##            mean 0.5112830270 0.4779375252 0.5359508584 0.5122310753
##            sd   0.0951389421 0.1388126149 0.1046608101 0.1385560540
##                
## n_unique_tokens         5800         5900         6000         6100
##            mean 0.5460554692 0.4554131833 0.5024818717 0.5902118766
##            sd   0.1300898183 0.1996862861 0.1626457698 0.1260551484
##                
## n_unique_tokens         6200         6300         6400         6500
##            mean 0.5531022454 0.5570858665 0.5947703936 0.5519821109
##            sd   0.0919347350 0.1016951486 0.1182120027 0.1189436846
##                
## n_unique_tokens         6600         6700         6800         6900
##            mean 0.5263820611 0.5978577798 0.4702730648 0.5372586961
##            sd   0.1779226164 0.1112405265 0.2087183524 0.1953223219
##                
## n_unique_tokens         7000         7100         7200         7300
##            mean 0.5965556444 0.5832941314 0.5821257409 0.5665545412
##            sd   0.0819326274 0.1033304700 0.1464839132 0.1419136438
##                
## n_unique_tokens         7400         7500         7600         7700
##            mean 0.5802665174 0.5331518393 0.5477127375 0.5994154323
##            sd   0.1327198145 0.1083145949 0.0943084268 0.1701911504
##                
## n_unique_tokens         7800         7900         8000         8100
##            mean 0.5572602289 0.5579003326 0.5294019881 0.5332030520
##            sd   0.1940056214 0.0541057187 0.1161021092 0.2139996038
##                
## n_unique_tokens         8200         8300         8400         8500
##            mean 0.5629876839 0.6292695928 0.4884265656 0.5237636787
##            sd   0.1222752103 0.0813344783 0.2374661288 0.1362903887
##                
## n_unique_tokens         8600         8700         8800         8900
##            mean 0.5289619144 0.5868769806 0.5572380174 0.6623531538
##            sd   0.0585247239 0.1101817474 0.0549254670 0.1275460011
##                
## n_unique_tokens         9000         9100         9200         9300
##            mean 0.5386967028 0.6013951518 0.5273751488 0.5775445576
##            sd   0.0805233549 0.1056683041 0.2358433204 0.0416209722
##                
## n_unique_tokens         9400         9500         9600         9700
##            mean 0.5650844925 0.5297453305 0.5143356351 0.5461711296
##            sd   0.0918061211 0.0704234662 0.1122064234 0.0971718847
##                
## n_unique_tokens         9800         9900        10000        10100
##            mean 0.5474308763 0.5138288115 0.6139955736 0.5716051142
##            sd   0.1106602305 0.0603317486 0.1285516350 0.1075969215
##                
## n_unique_tokens        10200        10300        10400        10500
##            mean 0.4967017158 0.5114498904 0.4974272519 0.5438133269
##            sd   0.1097606732 0.1926091001 0.0922770862 0.1209962913
##                
## n_unique_tokens        10600        10700        10800        10900
##            mean 0.6068880826 0.5902898871 0.5206985490 0.5170979527
##            sd   0.1086344924 0.1086976879 0.1246376672 0.1055194858
##                
## n_unique_tokens        11000        11100        11200        11300
##            mean 0.6147406914 0.6048223312 0.4821375597 0.6118327184
##            sd   0.1264241120 0.1171533100 0.1744673194 0.0965160368
##                
## n_unique_tokens        11400        11500        11600        11700
##            mean 0.5978835887 0.5357217821 0.5295454533 0.6067113324
##            sd   0.0565151671 0.0277083332              0.1783954452
##                
## n_unique_tokens        11800        11900        12000        12100
##            mean 0.5760916270 0.5714038000 0.4873336300 0.5452451141
##            sd   0.1216475909 0.1268251191 0.1269223605 0.0622290092
##                
## n_unique_tokens        12200        12300        12400        12500
##            mean 0.5516227934 0.4790882997 0.5338583157 0.6184733470
##            sd   0.0186128294 0.1994818851 0.1023735470 0.1389920513
##                
## n_unique_tokens        12600        12700        12800        12900
##            mean 0.5055911965 0.4833567376 0.5353541910 0.6202061329
##            sd   0.0263076954 0.1655564580 0.1764398588 0.1194895187
##                
## n_unique_tokens        13000        13100        13200        13300
##            mean 0.4582654081 0.6969696935 0.4826004490 0.6254495756
##            sd   0.3162930340              0.0073601729 0.1317459871
##                
## n_unique_tokens        13400        13500        13600        13700
##            mean 0.5916431885 0.5209673192 0.4696969689 0.6311102589
##            sd   0.0382680370 0.0250306552 0.0603865300 0.0203481259
##                
## n_unique_tokens        13800        13900        14000        14100
##            mean 0.5921808799 0.4663507592 0.5306122431 0.6396396368
##            sd   0.1787736798 0.2179241472                          
##                
## n_unique_tokens        14200        14300        14400        14500
##            mean 0.5198776743 0.5791174368 0.4527265594 0.6637928835
##            sd                0.0916852764 0.1903884517 0.0717663760
##                
## n_unique_tokens        14600        14700        14800        14900
##            mean 0.6160714258 0.5648448669 0.5403868257 0.7048699165
##            sd                0.0667717062 0.0839808235 0.1964060789
##                
## n_unique_tokens        15000        15200        15300        15400
##            mean 0.5888063396 0.5008404390 0.6206871581 0.6572345516
##            sd   0.1376745658 0.0494133569 0.3457488713 0.1944977012
##                
## n_unique_tokens        15500        15600        15700        15800
##            mean 0.4779116447 0.4527299629 0.5400070523 0.7129411725
##            sd                0.0266080775 0.1807198117 0.0099826828
##                
## n_unique_tokens        15900        16100        16200        16300
##            mean 0.5147474272 0.5119682026 0.4891963160 0.6075442754
##            sd   0.0081534956 0.0610991823 0.1179422453 0.1848507369
##                
## n_unique_tokens        16400        16500        16600        16700
##            mean 0.4465134234 0.4729099744 0.5996342183 0.6070622465
##            sd   0.1456520125 0.0271226821 0.0767436983 0.0612470650
##                
## n_unique_tokens        16800        16900        17000        17100
##            mean 0.6595849649 0.4343549288 0.6962962911 0.4511640712
##            sd   0.0960655907 0.0102175296              0.2698787808
##                
## n_unique_tokens        17200        17300        17400        17500
##            mean 0.3853820594 0.6076118981 0.4565619215 0.6030986277
##            sd                0.0265330873              0.0532848351
##                
## n_unique_tokens        17600        17800        17900        18000
##            mean 0.5998647796 0.6435281315 0.4763649177 0.4525993875
##            sd   0.0368382801 0.0900800305 0.1037018697 0.0648721809
##                
## n_unique_tokens        18100        18200        18300        18400
##            mean 0.5573657593 0.4395332943 0.7313432781 0.6074196658
##            sd   0.0676929907 0.0652269835              0.0725260192
##                
## n_unique_tokens        18700        18900        19100        19200
##            mean 0.5579710125 0.5544871777 0.6523437475 0.4380681816
##            sd                                                      
##                
## n_unique_tokens        19400        19800        20200        20300
##            mean 0.6275303618 0.7555658539 0.5852708035 0.5061349678
##            sd                0.0150866922 0.2387582123             
##                
## n_unique_tokens        20500        20600        20700        20800
##            mean 0.5107632084 0.4947759616 0.6295386265 0.6919163807
##            sd                0.0933583340 0.0239370023 0.0483636492
##                
## n_unique_tokens        20900        21000        21100        21400
##            mean 0.5634759361 0.7699114976 0.3443037972 0.5652777753
##            sd   0.1585075887                           0.0137492979
##                
## n_unique_tokens        21500        21700        21800        21900
##            mean 0.6180764357 0.6010702821 0.6890243860 0.6538461507
##            sd   0.2219234192 0.0762267817                          
##                
## n_unique_tokens        22000        22100        22200        22300
##            mean 0.6193301068 0.5107924727 0.4611764700 0.7103345730
##            sd   0.0342075757 0.0986335303              0.1346373612
##                
## n_unique_tokens        23000        23100        23300        23500
##            mean 0.1921241048 0.5689655160 0.6355140157 0.6432518917
##            sd                                          0.1103021632
##                
## n_unique_tokens        23600        23700        23800        23900
##            mean 0.5533661731 0.6239056445 0.6289592732 0.5094339614
##            sd                0.0322186850                          
##                
## n_unique_tokens        24000        24200        24300        24400
##            mean 0.5876288640 0.6963190163 0.4761904756 0.6087206178
##            sd                                          0.1465240430
##                
## n_unique_tokens        24500        24800        24900        25000
##            mean 0.5672324456 0.4828496029 0.6725663687 0.7672413727
##            sd   0.0767756670                                       
##                
## n_unique_tokens        25100        25200        25300        25700
##            mean 0.5582655811 0.6266451357 0.5024597294 0.6666666622
##            sd                0.1000562794 0.1087605856             
##                
## n_unique_tokens        26200        26300        26400        26600
##            mean 0.5051546385 0.5819672083 0.6415223765 0.4086757982
##            sd                             0.1418815146             
##                
## n_unique_tokens        26900        27000        27300        27400
##            mean 0.7383720887 0.6223047735 0.4385366826 0.6619718263
##            sd                0.2341570055 0.0502775665             
##                
## n_unique_tokens        27700        27900        28200        28300
##            mean 0.5785444041 0.6739130398 0.6534735347 0.5404761892
##            sd   0.0365591134              0.0871144994             
##                
## n_unique_tokens        28600        28900        30000        30200
##            mean 0.2914614119 0.5795918344 0.6877323395 0.4386981162
##            sd                                          0.0126271235
##                
## n_unique_tokens        30400        31400        31600        32200
##            mean 0.5955056166 0.1955555553 0.7253885973 0.6809338495
##            sd                                                      
##                
## n_unique_tokens        32600        32700        33100        33900
##            mean 0.5146198800 0.5466926059 0.5473684196 0.6326530596
##            sd                                                      
##                
## n_unique_tokens        34900        35100        35300        35800
##            mean 0.8356164269 0.6832298094 0.2219492219 0.5199896506
##            sd                                          0.1240302849
##                
## n_unique_tokens        36100        36200        36700        36800
##            mean 0.4826958097 0.6966733938 0.6298076893 0.7151898689
##            sd                0.1035948628                          
##                
## n_unique_tokens        37400        39200        39400        40100
##            mean 0.7867647001 0.4833333324 0.4245283013 0.6470588193
##            sd                                                      
##                
## n_unique_tokens        40400        41200        41600        41700
##            mean 0.7183172942 0.6624203779 0.7530864105 0.4366336629
##            sd   0.0151532406                                       
##                
## n_unique_tokens        42200        42600        43100        44700
##            mean 0.7058823478 0.5631399298 0.6313131281 0.6640624974
##            sd                                                      
##                
## n_unique_tokens        45400        48800        49000        50200
##            mean 0.4769775673 0.4836601299 0.6050420143 0.6067166911
##            sd                                          0.1765319347
##                
## n_unique_tokens        51900        53100        53700        54300
##            mean 0.6666666626 0.4694376517 0.7459459419 0.5744680827
##            sd                                                      
##                
## n_unique_tokens        56400        57600        61500        61600
##            mean 0.4042016805 0.6150870394 0.7116279037 0.4749568217
##            sd                                                      
##                
## n_unique_tokens        62300        65300        68300        71800
##            mean 0.5852534535 0.5509761376 0.5602094226 0.4959216958
##            sd                                                      
##                
## n_unique_tokens        73100        80400        81200        87000
##            mean 0.4308202152 0.6498054449 0.3548546081 0.6094890489
##            sd                                                      
##                
## n_unique_tokens        93800        97200       104100       112500
##            mean 0.6994219633 0.7230769175 0.3991975924 0.5109170300
##            sd                                                      
##                
## n_unique_tokens       118700       144400       196700       210300
##            mean 0.6079734199 0.5470941873 0.4753199264 0.2645975802
##            sd                                                      
##                
## n_unique_tokens       227300       306100       617900       690400
##            mean 0.5658436202 0.4600674910 0.4878048767 0.5172018343
##            sd                                                      
##                
## n_unique_tokens       843300
##            mean 0.5007342137
##            sd               
## 
## # ... and 54 more tables
filteredTestPred <- predict(nb_model, newdata = filteredTest)
table(filteredTestPred, filteredTest$shares)
##                 
## filteredTestPred 8 82 112 114 129 184 220 233 242 263 287 296 299 303 325
##           4      0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           23     0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           41     0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           45     0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           47     0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           48     0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           51     0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           60     0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           64     0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           66     0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           70     0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           80     0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           82     0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           84     0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           86     0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           87     0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           88     0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           90     0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           91     0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           95     0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           97     0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           98     0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           99     0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           102    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           106    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           109    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           111    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           116    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           119    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           123    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           127    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           129    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           130    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           134    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           135    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           137    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           138    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           140    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           141    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           143    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           144    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           146    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           149    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           150    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           151    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           154    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           158    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           160    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           162    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           163    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           168    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           176    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           178    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           180    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           181    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           183    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           186    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           190    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           191    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           192    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           196    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           201    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           202    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           205    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           206    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           211    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           213    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           215    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           217    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           218    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           221    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           223    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           224    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           226    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           228    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           233    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           236    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           237    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           238    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           240    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           241    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           245    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           246    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           248    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           250    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           251    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           256    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           258    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           261    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           262    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           264    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           266    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           268    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           269    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           277    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           278    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           279    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           280    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           285    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           286    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           287    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           292    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           294    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           295    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           296    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           300    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           301    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           302    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           305    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           308    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           309    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           313    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           317    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           318    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           321    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           322    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           324    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           325    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           326    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           331    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           336    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           339    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           340    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           341    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           342    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           343    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           346    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           348    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           349    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           350    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           354    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           356    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           357    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           358    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           365    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           366    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           368    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           369    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           371    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           373    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           375    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           377    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           378    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           379    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           380    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           381    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           382    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           383    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           384    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           386    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           387    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           390    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           391    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           392    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           393    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           395    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           396    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           397    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           398    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           399    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           400    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           401    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           402    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           403    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           404    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           407    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           408    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           410    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           411    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           412    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           413    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           414    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           416    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           417    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           419    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           420    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           421    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           422    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           423    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           424    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           425    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           426    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           427    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           428    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           429    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           430    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           431    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           432    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           434    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           435    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           436    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           437    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           438    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           440    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           441    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           444    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           445    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           446    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           447    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           448    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           449    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           450    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           451    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           452    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           454    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           455    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           456    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           458    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           459    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           460    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           461    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           462    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           463    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           464    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           465    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           466    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           467    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           468    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           469    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           471    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           472    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           473    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           474    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           475    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           476    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           477    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           478    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           480    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           482    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           483    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           484    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           485    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           486    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           488    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           489    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           490    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           492    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           493    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           494    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           495    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           496    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           497    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           498    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           500    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           501    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           502    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           503    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           504    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           505    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           506    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           507    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           508    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           510    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           511    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           512    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           513    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           514    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           515    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           516    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           517    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           518    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           519    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           520    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           521    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           522    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           523    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           525    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           526    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           527    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           528    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           529    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           530    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           531    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           532    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           533    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           534    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           535    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           536    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           537    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           538    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           539    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           541    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           542    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           544    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           545    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           546    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           547    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           548    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           549    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           550    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           552    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           553    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           555    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           556    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           557    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           558    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           559    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           560    0  0   0   0   0   0   0   0   0   0   0   0   0   0   0
##                 
## filteredTestPred 332 342 343 403 404 405 409 428 433 442 447 453 464 469
##           4        0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           23       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           41       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           45       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           47       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           48       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           51       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           60       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           64       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           66       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           70       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           80       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           82       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           84       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           86       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           87       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           88       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           90       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           91       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           95       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           97       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           98       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           99       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           102      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           106      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           109      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           111      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           116      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           119      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           123      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           127      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           129      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           130      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           134      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           135      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           137      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           138      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           140      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           141      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           143      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           144      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           146      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           149      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           150      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           151      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           154      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           158      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           160      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           162      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           163      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           168      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           176      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           178      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           180      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           181      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           183      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           186      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           190      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           191      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           192      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           196      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           201      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           202      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           205      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           206      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           211      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           213      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           215      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           217      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           218      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           221      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           223      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           224      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           226      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           228      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           233      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           236      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           237      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           238      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           240      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           241      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           245      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           246      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           248      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           250      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           251      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           256      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           258      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           261      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           262      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           264      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           266      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           268      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           269      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           277      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           278      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           279      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           280      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           285      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           286      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           287      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           292      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           294      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           295      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           296      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           300      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           301      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           302      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           305      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           308      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           309      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           313      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           317      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           318      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           321      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           322      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           324      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           325      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           326      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           331      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           336      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           339      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           340      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           341      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           342      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           343      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           346      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           348      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           349      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           350      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           354      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           356      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           357      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           358      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           365      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           366      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           368      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           369      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           371      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           373      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           375      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           377      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           378      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           379      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           380      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           381      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           382      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           383      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           384      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           386      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           387      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           390      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           391      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           392      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           393      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           395      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           396      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           397      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           398      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           399      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           400      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           401      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           402      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           403      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           404      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           407      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           408      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           410      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           411      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           412      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           413      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           414      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           416      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           417      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           419      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           420      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           421      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           422      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           423      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           424      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           425      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           426      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           427      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           428      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           429      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           430      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           431      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           432      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           434      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           435      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           436      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           437      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           438      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           440      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           441      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           444      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           445      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           446      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           447      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           448      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           449      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           450      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           451      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           452      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           454      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           455      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           456      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           458      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           459      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           460      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           461      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           462      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           463      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           464      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           465      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           466      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           467      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           468      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           469      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           471      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           472      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           473      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           474      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           475      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           476      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           477      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           478      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           480      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           482      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           483      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           484      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           485      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           486      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           488      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           489      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           490      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           492      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           493      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           494      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           495      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           496      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           497      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           498      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           500      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           501      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           502      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           503      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           504      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           505      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           506      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           507      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           508      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           510      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           511      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           512      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           513      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           514      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           515      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           516      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           517      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           518      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           519      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           520      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           521      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           522      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           523      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           525      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           526      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           527      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           528      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           529      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           530      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           531      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           532      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           533      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           534      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           535      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           536      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           537      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           538      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           539      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           541      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           542      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           544      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           545      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           546      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           547      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           548      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           549      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           550      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           552      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           553      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           555      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           556      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           557      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           558      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           559      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           560      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##                 
## filteredTestPred 471 476 477 478 479 482 484 492 496 500 503 506 507 517
##           4        0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           23       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           41       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           45       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           47       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           48       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           51       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           60       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           64       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           66       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           70       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           80       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           82       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           84       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           86       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           87       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           88       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           90       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           91       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           95       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           97       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           98       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           99       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           102      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           106      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           109      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           111      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           116      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           119      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           123      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           127      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           129      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           130      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           134      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           135      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           137      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           138      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           140      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           141      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           143      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           144      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           146      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           149      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           150      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           151      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           154      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           158      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           160      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           162      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           163      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           168      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           176      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           178      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           180      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           181      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           183      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           186      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           190      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           191      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           192      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           196      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           201      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           202      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           205      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           206      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           211      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           213      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           215      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           217      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           218      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           221      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           223      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           224      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           226      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           228      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           233      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           236      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           237      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           238      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           240      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           241      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           245      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           246      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           248      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           250      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           251      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           256      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           258      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           261      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           262      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           264      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           266      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           268      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           269      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           277      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           278      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           279      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           280      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           285      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           286      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           287      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           292      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           294      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           295      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           296      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           300      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           301      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           302      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           305      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           308      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           309      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           313      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           317      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           318      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           321      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           322      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           324      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           325      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           326      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           331      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           336      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           339      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           340      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           341      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           342      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           343      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           346      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           348      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           349      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           350      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           354      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           356      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           357      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           358      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           365      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           366      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           368      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           369      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           371      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           373      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           375      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           377      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           378      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           379      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           380      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           381      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           382      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           383      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           384      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           386      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           387      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           390      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           391      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           392      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           393      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           395      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           396      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           397      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           398      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           399      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           400      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           401      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           402      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           403      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           404      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           407      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           408      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           410      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           411      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           412      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           413      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           414      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           416      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           417      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           419      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           420      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           421      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           422      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           423      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           424      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           425      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           426      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           427      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           428      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           429      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           430      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           431      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           432      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           434      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           435      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           436      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           437      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           438      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           440      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           441      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           444      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           445      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           446      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           447      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           448      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           449      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           450      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           451      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           452      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           454      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           455      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           456      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           458      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           459      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           460      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           461      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           462      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           463      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           464      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           465      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           466      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           467      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           468      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           469      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           471      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           472      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           473      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           474      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           475      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           476      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           477      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           478      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           480      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           482      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           483      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           484      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           485      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           486      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           488      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           489      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           490      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           492      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           493      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           494      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           495      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           496      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           497      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           498      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           500      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           501      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           502      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           503      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           504      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           505      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           506      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           507      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           508      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           510      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           511      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           512      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           513      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           514      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           515      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           516      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           517      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           518      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           519      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           520      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           521      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           522      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           523      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           525      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           526      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           527      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           528      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           529      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           530      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           531      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           532      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           533      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           534      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           535      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           536      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           537      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           538      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           539      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           541      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           542      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           544      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           545      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           546      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           547      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           548      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           549      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           550      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           552      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           553      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           555      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           556      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           557      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           558      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           559      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           560      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##                 
## filteredTestPred 522 529 532 536 539 543 544 547 552 554 556 562 569 570
##           4        0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           23       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           41       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           45       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           47       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           48       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           51       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           60       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           64       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           66       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           70       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           80       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           82       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           84       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           86       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           87       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           88       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           90       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           91       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           95       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           97       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           98       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           99       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           102      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           106      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           109      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           111      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           116      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           119      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           123      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           127      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           129      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           130      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           134      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           135      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           137      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           138      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           140      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           141      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           143      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           144      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           146      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           149      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           150      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           151      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           154      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           158      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           160      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           162      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           163      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           168      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           176      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           178      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           180      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           181      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           183      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           186      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           190      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           191      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           192      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           196      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           201      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           202      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           205      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           206      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           211      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           213      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           215      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           217      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           218      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           221      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           223      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           224      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           226      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           228      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           233      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           236      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           237      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           238      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           240      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           241      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           245      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           246      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           248      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           250      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           251      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           256      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           258      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           261      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           262      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           264      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           266      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           268      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           269      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           277      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           278      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           279      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           280      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           285      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           286      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           287      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           292      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           294      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           295      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           296      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           300      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           301      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           302      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           305      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           308      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           309      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           313      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           317      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           318      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           321      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           322      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           324      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           325      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           326      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           331      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           336      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           339      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           340      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           341      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           342      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           343      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           346      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           348      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           349      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           350      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           354      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           356      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           357      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           358      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           365      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           366      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           368      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           369      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           371      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           373      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           375      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           377      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           378      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           379      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           380      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           381      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           382      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           383      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           384      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           386      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           387      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           390      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           391      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           392      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           393      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           395      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           396      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           397      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           398      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           399      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           400      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           401      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           402      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           403      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           404      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           407      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           408      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           410      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           411      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           412      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           413      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           414      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           416      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           417      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           419      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           420      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           421      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           422      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           423      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           424      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           425      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           426      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           427      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           428      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           429      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           430      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           431      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           432      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           434      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           435      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           436      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           437      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           438      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           440      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           441      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           444      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           445      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           446      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           447      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           448      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           449      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           450      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           451      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           452      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           454      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           455      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           456      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           458      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           459      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           460      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           461      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           462      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           463      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           464      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           465      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           466      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           467      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           468      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           469      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           471      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           472      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           473      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           474      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           475      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           476      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           477      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           478      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           480      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           482      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           483      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           484      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           485      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           486      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           488      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           489      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           490      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           492      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           493      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           494      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           495      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           496      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           497      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           498      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           500      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           501      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           502      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           503      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           504      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           505      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           506      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           507      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           508      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           510      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           511      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           512      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           513      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           514      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           515      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           516      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           517      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           518      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           519      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           520      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           521      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           522      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           523      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           525      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           526      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           527      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           528      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           529      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           530      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           531      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           532      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           533      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           534      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           535      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           536      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           537      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           538      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           539      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           541      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           542      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           544      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           545      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           546      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           547      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           548      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           549      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           550      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           552      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           553      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           555      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           556      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           557      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           558      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           559      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           560      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##                 
## filteredTestPred 578 581 583 587 591 592 594 596 597 600 612 614 628 630
##           4        0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           23       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           41       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           45       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           47       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           48       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           51       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           60       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           64       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           66       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           70       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           80       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           82       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           84       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           86       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           87       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           88       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           90       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           91       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           95       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           97       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           98       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           99       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           102      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           106      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           109      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           111      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           116      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           119      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           123      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           127      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           129      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           130      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           134      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           135      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           137      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           138      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           140      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           141      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           143      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           144      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           146      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           149      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           150      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           151      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           154      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           158      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           160      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           162      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           163      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           168      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           176      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           178      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           180      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           181      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           183      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           186      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           190      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           191      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           192      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           196      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           201      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           202      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           205      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           206      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           211      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           213      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           215      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           217      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           218      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           221      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           223      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           224      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           226      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           228      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           233      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           236      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           237      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           238      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           240      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           241      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           245      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           246      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           248      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           250      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           251      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           256      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           258      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           261      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           262      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           264      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           266      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           268      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           269      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           277      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           278      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           279      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           280      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           285      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           286      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           287      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           292      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           294      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           295      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           296      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           300      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           301      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           302      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           305      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           308      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           309      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           313      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           317      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           318      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           321      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           322      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           324      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           325      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           326      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           331      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           336      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           339      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           340      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           341      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           342      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           343      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           346      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           348      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           349      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           350      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           354      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           356      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           357      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           358      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           365      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           366      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           368      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           369      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           371      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           373      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           375      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           377      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           378      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           379      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           380      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           381      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           382      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           383      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           384      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           386      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           387      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           390      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           391      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           392      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           393      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           395      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           396      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           397      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           398      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           399      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           400      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           401      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           402      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           403      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           404      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           407      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           408      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           410      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           411      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           412      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           413      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           414      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           416      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           417      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           419      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           420      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           421      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           422      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           423      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           424      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           425      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           426      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           427      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           428      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           429      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           430      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           431      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           432      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           434      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           435      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           436      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           437      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           438      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           440      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           441      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           444      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           445      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           446      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           447      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           448      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           449      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           450      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           451      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           452      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           454      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           455      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           456      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           458      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           459      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           460      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           461      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           462      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           463      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           464      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           465      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           466      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           467      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           468      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           469      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           471      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           472      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           473      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           474      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           475      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           476      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           477      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           478      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           480      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           482      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           483      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           484      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           485      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           486      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           488      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           489      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           490      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           492      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           493      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           494      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           495      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           496      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           497      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           498      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           500      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           501      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           502      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           503      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           504      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           505      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           506      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           507      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           508      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           510      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           511      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           512      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           513      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           514      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           515      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           516      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           517      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           518      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           519      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           520      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           521      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           522      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           523      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           525      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           526      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           527      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           528      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           529      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           530      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           531      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           532      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           533      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           534      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           535      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           536      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           537      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           538      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           539      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           541      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           542      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           544      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           545      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           546      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           547      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           548      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           549      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           550      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           552      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           553      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           555      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           556      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           557      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           558      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           559      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           560      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##                 
## filteredTestPred 633 638 639 642 646 649 651 659 663 664 665 668 676 681
##           4        0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           23       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           41       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           45       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           47       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           48       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           51       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           60       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           64       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           66       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           70       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           80       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           82       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           84       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           86       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           87       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           88       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           90       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           91       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           95       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           97       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           98       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           99       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           102      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           106      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           109      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           111      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           116      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           119      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           123      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           127      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           129      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           130      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           134      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           135      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           137      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           138      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           140      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           141      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           143      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           144      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           146      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           149      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           150      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           151      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           154      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           158      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           160      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           162      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           163      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           168      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           176      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           178      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           180      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           181      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           183      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           186      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           190      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           191      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           192      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           196      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           201      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           202      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           205      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           206      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           211      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           213      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           215      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           217      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           218      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           221      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           223      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           224      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           226      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           228      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           233      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           236      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           237      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           238      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           240      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           241      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           245      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           246      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           248      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           250      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           251      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           256      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           258      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           261      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           262      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           264      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           266      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           268      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           269      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           277      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           278      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           279      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           280      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           285      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           286      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           287      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           292      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           294      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           295      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           296      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           300      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           301      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           302      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           305      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           308      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           309      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           313      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           317      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           318      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           321      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           322      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           324      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           325      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           326      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           331      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           336      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           339      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           340      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           341      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           342      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           343      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           346      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           348      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           349      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           350      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           354      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           356      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           357      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           358      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           365      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           366      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           368      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           369      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           371      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           373      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           375      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           377      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           378      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           379      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           380      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           381      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           382      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           383      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           384      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           386      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           387      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           390      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           391      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           392      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           393      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           395      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           396      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           397      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           398      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           399      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           400      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           401      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           402      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           403      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           404      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           407      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           408      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           410      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           411      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           412      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           413      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           414      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           416      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           417      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           419      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           420      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           421      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           422      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           423      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           424      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           425      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           426      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           427      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           428      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           429      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           430      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           431      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           432      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           434      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           435      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           436      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           437      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           438      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           440      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           441      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           444      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           445      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           446      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           447      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           448      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           449      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           450      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           451      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           452      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           454      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           455      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           456      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           458      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           459      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           460      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           461      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           462      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           463      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           464      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           465      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           466      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           467      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           468      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           469      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           471      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           472      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           473      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           474      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           475      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           476      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           477      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           478      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           480      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           482      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           483      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           484      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           485      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           486      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           488      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           489      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           490      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           492      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           493      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           494      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           495      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           496      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           497      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           498      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           500      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           501      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           502      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           503      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           504      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           505      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           506      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           507      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           508      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           510      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           511      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           512      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           513      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           514      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           515      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           516      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           517      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           518      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           519      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           520      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           521      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           522      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           523      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           525      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           526      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           527      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           528      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           529      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           530      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           531      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           532      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           533      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           534      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           535      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           536      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           537      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           538      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           539      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           541      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           542      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           544      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           545      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           546      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           547      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           548      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           549      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           550      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           552      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           553      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           555      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           556      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           557      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           558      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           559      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           560      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##                 
## filteredTestPred 683 686 687 693 695 696 699 700 702 704 705 707 714 716
##           4        0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           23       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           41       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           45       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           47       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           48       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           51       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           60       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           64       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           66       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           70       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           80       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           82       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           84       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           86       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           87       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           88       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           90       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           91       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           95       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           97       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           98       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           99       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           102      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           106      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           109      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           111      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           116      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           119      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           123      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           127      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           129      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           130      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           134      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           135      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           137      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           138      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           140      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           141      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           143      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           144      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           146      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           149      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           150      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           151      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           154      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           158      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           160      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           162      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           163      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           168      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           176      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           178      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           180      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           181      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           183      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           186      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           190      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           191      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           192      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           196      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           201      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           202      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           205      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           206      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           211      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           213      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           215      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           217      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           218      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           221      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           223      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           224      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           226      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           228      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           233      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           236      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           237      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           238      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           240      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           241      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           245      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           246      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           248      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           250      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           251      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           256      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           258      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           261      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           262      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           264      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           266      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           268      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           269      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           277      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           278      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           279      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           280      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           285      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           286      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           287      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           292      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           294      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           295      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           296      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           300      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           301      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           302      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           305      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           308      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           309      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           313      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           317      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           318      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           321      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           322      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           324      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           325      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           326      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           331      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           336      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           339      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           340      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           341      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           342      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           343      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           346      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           348      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           349      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           350      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           354      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           356      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           357      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           358      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           365      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           366      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           368      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           369      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           371      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           373      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           375      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           377      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           378      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           379      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           380      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           381      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           382      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           383      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           384      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           386      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           387      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           390      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           391      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           392      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           393      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           395      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           396      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           397      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           398      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           399      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           400      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           401      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           402      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           403      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           404      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           407      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           408      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           410      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           411      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           412      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           413      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           414      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           416      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           417      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           419      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           420      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           421      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           422      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           423      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           424      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           425      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           426      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           427      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           428      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           429      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           430      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           431      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           432      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           434      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           435      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           436      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           437      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           438      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           440      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           441      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           444      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           445      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           446      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           447      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           448      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           449      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           450      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           451      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           452      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           454      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           455      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           456      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           458      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           459      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           460      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           461      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           462      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           463      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           464      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           465      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           466      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           467      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           468      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           469      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           471      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           472      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           473      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           474      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           475      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           476      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           477      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           478      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           480      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           482      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           483      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           484      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           485      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           486      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           488      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           489      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           490      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           492      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           493      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           494      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           495      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           496      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           497      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           498      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           500      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           501      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           502      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           503      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           504      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           505      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           506      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           507      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           508      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           510      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           511      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           512      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           513      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           514      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           515      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           516      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           517      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           518      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           519      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           520      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           521      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           522      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           523      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           525      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           526      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           527      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           528      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           529      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           530      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           531      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           532      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           533      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           534      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           535      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           536      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           537      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           538      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           539      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           541      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           542      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           544      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           545      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           546      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           547      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           548      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           549      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           550      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           552      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           553      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           555      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           556      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           557      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           558      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           559      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           560      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##                 
## filteredTestPred 720 726 727 730 731 734 742 743 754 756 758 760 761 762
##           4        0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           23       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           41       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           45       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           47       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           48       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           51       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           60       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           64       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           66       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           70       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           80       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           82       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           84       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           86       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           87       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           88       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           90       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           91       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           95       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           97       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           98       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           99       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           102      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           106      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           109      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           111      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           116      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           119      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           123      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           127      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           129      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           130      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           134      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           135      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           137      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           138      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           140      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           141      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           143      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           144      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           146      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           149      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           150      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           151      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           154      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           158      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           160      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           162      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           163      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           168      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           176      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           178      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           180      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           181      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           183      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           186      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           190      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           191      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           192      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           196      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           201      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           202      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           205      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           206      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           211      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           213      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           215      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           217      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           218      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           221      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           223      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           224      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           226      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           228      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           233      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           236      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           237      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           238      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           240      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           241      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           245      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           246      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           248      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           250      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           251      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           256      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           258      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           261      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           262      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           264      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           266      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           268      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           269      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           277      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           278      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           279      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           280      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           285      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           286      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           287      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           292      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           294      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           295      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           296      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           300      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           301      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           302      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           305      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           308      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           309      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           313      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           317      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           318      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           321      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           322      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           324      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           325      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           326      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           331      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           336      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           339      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           340      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           341      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           342      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           343      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           346      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           348      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           349      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           350      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           354      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           356      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           357      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           358      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           365      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           366      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           368      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           369      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           371      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           373      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           375      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           377      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           378      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           379      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           380      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           381      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           382      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           383      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           384      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           386      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           387      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           390      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           391      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           392      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           393      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           395      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           396      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           397      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           398      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           399      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           400      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           401      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           402      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           403      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           404      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           407      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           408      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           410      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           411      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           412      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           413      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           414      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           416      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           417      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           419      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           420      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           421      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           422      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           423      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           424      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           425      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           426      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           427      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           428      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           429      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           430      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           431      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           432      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           434      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           435      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           436      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           437      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           438      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           440      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           441      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           444      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           445      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           446      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           447      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           448      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           449      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           450      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           451      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           452      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           454      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           455      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           456      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           458      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           459      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           460      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           461      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           462      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           463      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           464      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           465      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           466      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           467      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           468      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           469      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           471      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           472      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           473      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           474      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           475      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           476      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           477      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           478      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           480      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           482      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           483      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           484      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           485      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           486      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           488      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           489      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           490      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           492      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           493      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           494      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           495      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           496      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           497      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           498      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           500      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           501      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           502      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           503      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           504      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           505      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           506      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           507      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           508      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           510      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           511      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           512      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           513      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           514      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           515      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           516      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           517      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           518      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           519      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           520      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           521      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           522      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           523      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           525      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           526      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           527      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           528      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           529      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           530      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           531      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           532      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           533      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           534      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           535      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           536      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           537      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           538      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           539      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           541      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           542      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           544      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           545      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           546      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           547      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           548      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           549      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           550      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           552      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           553      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           555      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           556      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           557      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           558      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           559      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           560      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##                 
## filteredTestPred 764 765 766 768 773 774 779 782 784 786 788 790 791 793
##           4        0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           23       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           41       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           45       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           47       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           48       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           51       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           60       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           64       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           66       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           70       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           80       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           82       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           84       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           86       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           87       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           88       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           90       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           91       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           95       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           97       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           98       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           99       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           102      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           106      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           109      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           111      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           116      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           119      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           123      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           127      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           129      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           130      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           134      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           135      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           137      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           138      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           140      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           141      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           143      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           144      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           146      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           149      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           150      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           151      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           154      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           158      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           160      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           162      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           163      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           168      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           176      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           178      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           180      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           181      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           183      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           186      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           190      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           191      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           192      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           196      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           201      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           202      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           205      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           206      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           211      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           213      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           215      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           217      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           218      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           221      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           223      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           224      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           226      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           228      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           233      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           236      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           237      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           238      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           240      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           241      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           245      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           246      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           248      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           250      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           251      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           256      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           258      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           261      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           262      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           264      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           266      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           268      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           269      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           277      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           278      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           279      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           280      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           285      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           286      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           287      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           292      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           294      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           295      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           296      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           300      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           301      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           302      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           305      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           308      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           309      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           313      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           317      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           318      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           321      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           322      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           324      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           325      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           326      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           331      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           336      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           339      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           340      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           341      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           342      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           343      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           346      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           348      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           349      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           350      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           354      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           356      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           357      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           358      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           365      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           366      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           368      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           369      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           371      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           373      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           375      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           377      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           378      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           379      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           380      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           381      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           382      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           383      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           384      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           386      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           387      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           390      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           391      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           392      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           393      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           395      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           396      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           397      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           398      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           399      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           400      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           401      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           402      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           403      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           404      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           407      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           408      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           410      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           411      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           412      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           413      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           414      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           416      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           417      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           419      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           420      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           421      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           422      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           423      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           424      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           425      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           426      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           427      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           428      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           429      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           430      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           431      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           432      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           434      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           435      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           436      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           437      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           438      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           440      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           441      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           444      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           445      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           446      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           447      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           448      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           449      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           450      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           451      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           452      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           454      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           455      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           456      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           458      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           459      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           460      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           461      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           462      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           463      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           464      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           465      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           466      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           467      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           468      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           469      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           471      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           472      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           473      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           474      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           475      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           476      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           477      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           478      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           480      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           482      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           483      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           484      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           485      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           486      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           488      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           489      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           490      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           492      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           493      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           494      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           495      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           496      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           497      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           498      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           500      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           501      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           502      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           503      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           504      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           505      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           506      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           507      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           508      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           510      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           511      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           512      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           513      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           514      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           515      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           516      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           517      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           518      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           519      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           520      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           521      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           522      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           523      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           525      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           526      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           527      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           528      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           529      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           530      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           531      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           532      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           533      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           534      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           535      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           536      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           537      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           538      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           539      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           541      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           542      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           544      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           545      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           546      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           547      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           548      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           549      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           550      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           552      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           553      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           555      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           556      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           557      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           558      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           559      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           560      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##                 
## filteredTestPred 797 798 803 804 807 808 810 811 817 819 820 821 827 828
##           4        0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           23       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           41       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           45       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           47       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           48       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           51       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           60       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           64       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           66       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           70       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           80       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           82       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           84       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           86       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           87       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           88       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           90       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           91       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           95       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           97       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           98       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           99       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           102      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           106      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           109      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           111      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           116      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           119      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           123      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           127      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           129      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           130      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           134      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           135      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           137      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           138      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           140      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           141      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           143      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           144      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           146      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           149      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           150      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           151      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           154      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           158      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           160      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           162      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           163      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           168      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           176      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           178      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           180      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           181      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           183      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           186      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           190      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           191      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           192      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           196      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           201      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           202      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           205      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           206      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           211      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           213      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           215      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           217      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           218      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           221      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           223      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           224      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           226      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           228      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           233      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           236      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           237      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           238      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           240      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           241      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           245      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           246      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           248      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           250      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           251      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           256      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           258      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           261      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           262      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           264      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           266      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           268      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           269      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           277      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           278      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           279      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           280      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           285      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           286      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           287      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           292      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           294      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           295      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           296      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           300      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           301      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           302      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           305      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           308      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           309      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           313      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           317      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           318      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           321      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           322      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           324      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           325      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           326      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           331      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           336      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           339      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           340      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           341      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           342      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           343      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           346      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           348      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           349      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           350      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           354      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           356      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           357      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           358      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           365      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           366      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           368      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           369      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           371      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           373      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           375      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           377      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           378      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           379      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           380      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           381      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           382      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           383      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           384      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           386      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           387      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           390      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           391      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           392      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           393      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           395      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           396      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           397      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           398      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           399      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           400      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           401      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           402      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           403      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           404      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           407      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           408      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           410      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           411      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           412      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           413      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           414      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           416      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           417      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           419      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           420      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           421      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           422      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           423      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           424      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           425      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           426      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           427      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           428      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           429      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           430      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           431      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           432      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           434      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           435      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           436      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           437      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           438      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           440      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           441      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           444      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           445      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           446      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           447      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           448      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           449      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           450      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           451      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           452      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           454      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           455      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           456      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           458      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           459      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           460      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           461      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           462      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           463      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           464      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           465      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           466      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           467      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           468      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           469      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           471      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           472      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           473      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           474      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           475      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           476      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           477      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           478      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           480      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           482      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           483      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           484      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           485      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           486      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           488      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           489      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           490      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           492      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           493      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           494      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           495      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           496      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           497      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           498      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           500      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           501      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           502      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           503      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           504      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           505      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           506      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           507      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           508      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           510      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           511      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           512      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           513      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           514      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           515      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           516      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           517      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           518      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           519      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           520      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           521      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           522      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           523      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           525      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           526      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           527      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           528      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           529      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           530      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           531      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           532      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           533      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           534      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           535      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           536      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           537      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           538      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           539      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           541      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           542      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           544      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           545      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           546      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           547      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           548      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           549      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           550      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           552      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           553      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           555      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           556      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           557      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           558      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           559      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           560      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##                 
## filteredTestPred 830 831 832 834 838 840 843 844 847 849 850 851 854 858
##           4        0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           23       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           41       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           45       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           47       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           48       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           51       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           60       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           64       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           66       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           70       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           80       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           82       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           84       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           86       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           87       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           88       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           90       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           91       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           95       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           97       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           98       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           99       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           102      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           106      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           109      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           111      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           116      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           119      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           123      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           127      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           129      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           130      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           134      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           135      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           137      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           138      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           140      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           141      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           143      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           144      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           146      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           149      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           150      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           151      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           154      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           158      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           160      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           162      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           163      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           168      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           176      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           178      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           180      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           181      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           183      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           186      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           190      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           191      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           192      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           196      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           201      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           202      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           205      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           206      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           211      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           213      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           215      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           217      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           218      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           221      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           223      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           224      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           226      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           228      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           233      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           236      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           237      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           238      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           240      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           241      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           245      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           246      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           248      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           250      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           251      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           256      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           258      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           261      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           262      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           264      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           266      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           268      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           269      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           277      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           278      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           279      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           280      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           285      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           286      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           287      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           292      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           294      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           295      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           296      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           300      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           301      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           302      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           305      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           308      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           309      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           313      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           317      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           318      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           321      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           322      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           324      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           325      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           326      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           331      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           336      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           339      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           340      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           341      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           342      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           343      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           346      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           348      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           349      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           350      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           354      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           356      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           357      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           358      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           365      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           366      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           368      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           369      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           371      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           373      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           375      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           377      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           378      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           379      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           380      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           381      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           382      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           383      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           384      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           386      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           387      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           390      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           391      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           392      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           393      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           395      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           396      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           397      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           398      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           399      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           400      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           401      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           402      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           403      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           404      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           407      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           408      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           410      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           411      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           412      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           413      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           414      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           416      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           417      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           419      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           420      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           421      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           422      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           423      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           424      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           425      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           426      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           427      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           428      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           429      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           430      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           431      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           432      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           434      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           435      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           436      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           437      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           438      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           440      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           441      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           444      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           445      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           446      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           447      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           448      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           449      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           450      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           451      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           452      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           454      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           455      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           456      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           458      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           459      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           460      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           461      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           462      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           463      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           464      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           465      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           466      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           467      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           468      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           469      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           471      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           472      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           473      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           474      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           475      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           476      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           477      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           478      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           480      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           482      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           483      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           484      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           485      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           486      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           488      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           489      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           490      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           492      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           493      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           494      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           495      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           496      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           497      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           498      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           500      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           501      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           502      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           503      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           504      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           505      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           506      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           507      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           508      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           510      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           511      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           512      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           513      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           514      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           515      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           516      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           517      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           518      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           519      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           520      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           521      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           522      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           523      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           525      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           526      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           527      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           528      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           529      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           530      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           531      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           532      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           533      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           534      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           535      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           536      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           537      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           538      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           539      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           541      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           542      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           544      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           545      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           546      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           547      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           548      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           549      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           550      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           552      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           553      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           555      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           556      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           557      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           558      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           559      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           560      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##                 
## filteredTestPred 862 863 864 866 876 879 882 888 889 893 894 895 897 898
##           4        0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           23       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           41       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           45       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           47       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           48       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           51       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           60       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           64       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           66       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           70       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           80       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           82       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           84       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           86       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           87       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           88       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           90       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           91       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           95       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           97       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           98       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           99       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           102      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           106      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           109      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           111      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           116      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           119      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           123      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           127      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           129      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           130      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           134      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           135      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           137      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           138      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           140      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           141      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           143      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           144      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           146      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           149      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           150      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           151      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           154      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           158      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           160      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           162      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           163      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           168      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           176      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           178      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           180      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           181      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           183      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           186      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           190      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           191      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           192      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           196      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           201      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           202      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           205      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           206      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           211      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           213      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           215      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           217      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           218      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           221      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           223      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           224      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           226      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           228      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           233      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           236      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           237      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           238      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           240      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           241      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           245      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           246      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           248      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           250      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           251      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           256      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           258      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           261      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           262      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           264      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           266      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           268      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           269      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           277      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           278      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           279      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           280      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           285      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           286      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           287      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           292      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           294      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           295      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           296      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           300      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           301      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           302      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           305      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           308      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           309      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           313      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           317      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           318      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           321      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           322      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           324      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           325      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           326      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           331      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           336      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           339      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           340      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           341      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           342      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           343      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           346      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           348      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           349      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           350      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           354      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           356      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           357      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           358      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           365      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           366      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           368      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           369      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           371      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           373      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           375      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           377      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           378      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           379      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           380      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           381      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           382      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           383      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           384      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           386      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           387      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           390      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           391      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           392      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           393      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           395      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           396      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           397      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           398      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           399      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           400      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           401      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           402      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           403      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           404      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           407      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           408      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           410      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           411      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           412      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           413      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           414      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           416      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           417      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           419      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           420      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           421      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           422      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           423      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           424      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           425      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           426      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           427      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           428      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           429      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           430      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           431      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           432      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           434      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           435      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           436      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           437      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           438      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           440      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           441      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           444      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           445      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           446      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           447      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           448      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           449      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           450      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           451      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           452      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           454      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           455      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           456      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           458      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           459      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           460      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           461      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           462      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           463      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           464      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           465      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           466      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           467      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           468      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           469      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           471      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           472      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           473      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           474      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           475      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           476      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           477      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           478      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           480      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           482      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           483      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           484      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           485      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           486      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           488      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           489      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           490      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           492      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           493      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           494      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           495      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           496      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           497      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           498      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           500      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           501      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           502      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           503      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           504      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           505      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           506      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           507      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           508      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           510      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           511      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           512      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           513      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           514      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           515      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           516      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           517      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           518      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           519      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           520      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           521      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           522      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           523      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           525      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           526      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           527      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           528      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           529      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           530      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           531      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           532      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           533      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           534      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           535      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           536      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           537      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           538      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           539      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           541      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           542      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           544      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           545      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           546      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           547      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           548      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           549      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           550      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           552      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           553      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           555      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           556      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           557      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           558      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           559      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           560      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##                 
## filteredTestPred 899 900 901 903 906 911 913 917 918 924 925 926 927 929
##           4        0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           23       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           41       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           45       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           47       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           48       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           51       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           60       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           64       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           66       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           70       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           80       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           82       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           84       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           86       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           87       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           88       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           90       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           91       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           95       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           97       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           98       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           99       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           102      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           106      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           109      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           111      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           116      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           119      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           123      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           127      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           129      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           130      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           134      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           135      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           137      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           138      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           140      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           141      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           143      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           144      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           146      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           149      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           150      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           151      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           154      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           158      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           160      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           162      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           163      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           168      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           176      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           178      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           180      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           181      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           183      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           186      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           190      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           191      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           192      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           196      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           201      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           202      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           205      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           206      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           211      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           213      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           215      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           217      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           218      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           221      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           223      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           224      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           226      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           228      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           233      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           236      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           237      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           238      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           240      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           241      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           245      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           246      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           248      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           250      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           251      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           256      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           258      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           261      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           262      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           264      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           266      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           268      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           269      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           277      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           278      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           279      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           280      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           285      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           286      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           287      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           292      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           294      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           295      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           296      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           300      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           301      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           302      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           305      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           308      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           309      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           313      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           317      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           318      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           321      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           322      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           324      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           325      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           326      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           331      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           336      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           339      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           340      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           341      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           342      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           343      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           346      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           348      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           349      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           350      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           354      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           356      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           357      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           358      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           365      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           366      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           368      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           369      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           371      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           373      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           375      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           377      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           378      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           379      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           380      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           381      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           382      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           383      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           384      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           386      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           387      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           390      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           391      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           392      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           393      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           395      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           396      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           397      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           398      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           399      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           400      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           401      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           402      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           403      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           404      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           407      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           408      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           410      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           411      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           412      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           413      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           414      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           416      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           417      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           419      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           420      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           421      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           422      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           423      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           424      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           425      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           426      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           427      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           428      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           429      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           430      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           431      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           432      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           434      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           435      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           436      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           437      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           438      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           440      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           441      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           444      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           445      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           446      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           447      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           448      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           449      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           450      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           451      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           452      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           454      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           455      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           456      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           458      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           459      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           460      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           461      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           462      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           463      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           464      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           465      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           466      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           467      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           468      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           469      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           471      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           472      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           473      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           474      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           475      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           476      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           477      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           478      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           480      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           482      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           483      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           484      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           485      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           486      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           488      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           489      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           490      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           492      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           493      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           494      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           495      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           496      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           497      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           498      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           500      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           501      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           502      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           503      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           504      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           505      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           506      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           507      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           508      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           510      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           511      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           512      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           513      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           514      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           515      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           516      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           517      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           518      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           519      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           520      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           521      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           522      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           523      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           525      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           526      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           527      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           528      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           529      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           530      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           531      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           532      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           533      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           534      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           535      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           536      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           537      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           538      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           539      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           541      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           542      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           544      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           545      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           546      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           547      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           548      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           549      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           550      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           552      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           553      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           555      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           556      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           557      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           558      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           559      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           560      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##                 
## filteredTestPred 935 936 937 938 939 940 942 947 949 950 952 960 961 964
##           4        0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           23       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           41       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           45       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           47       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           48       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           51       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           60       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           64       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           66       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           70       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           80       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           82       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           84       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           86       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           87       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           88       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           90       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           91       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           95       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           97       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           98       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           99       0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           102      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           106      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           109      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           111      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           116      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           119      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           123      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           127      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           129      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           130      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           134      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           135      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           137      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           138      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           140      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           141      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           143      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           144      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           146      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           149      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           150      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           151      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           154      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           158      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           160      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           162      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           163      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           168      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           176      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           178      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           180      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           181      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           183      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           186      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           190      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           191      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           192      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           196      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           201      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           202      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           205      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           206      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           211      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           213      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           215      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           217      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           218      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           221      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           223      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           224      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           226      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           228      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           233      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           236      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           237      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           238      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           240      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           241      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           245      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           246      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           248      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           250      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           251      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           256      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           258      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           261      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           262      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           264      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           266      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           268      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           269      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           277      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           278      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           279      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           280      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           285      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           286      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           287      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           292      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           294      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           295      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           296      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           300      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           301      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           302      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           305      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           308      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           309      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           313      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           317      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           318      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           321      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           322      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           324      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           325      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           326      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           331      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           336      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           339      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           340      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           341      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           342      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           343      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           346      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           348      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           349      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           350      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           354      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           356      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           357      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           358      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           365      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           366      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           368      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           369      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           371      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           373      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           375      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           377      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           378      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           379      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           380      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           381      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           382      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           383      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           384      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           386      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           387      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           390      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           391      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           392      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           393      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           395      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           396      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           397      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           398      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           399      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           400      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           401      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           402      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           403      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           404      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           407      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           408      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           410      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           411      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           412      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           413      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           414      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           416      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           417      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           419      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           420      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           421      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           422      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           423      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           424      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           425      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           426      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           427      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           428      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           429      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           430      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           431      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           432      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           434      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           435      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           436      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           437      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           438      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           440      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           441      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           444      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           445      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           446      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           447      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           448      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           449      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           450      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           451      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           452      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           454      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           455      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           456      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           458      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           459      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           460      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           461      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           462      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           463      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           464      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           465      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           466      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           467      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           468      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           469      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           471      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           472      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           473      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           474      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           475      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           476      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           477      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           478      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           480      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           482      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           483      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           484      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           485      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           486      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           488      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           489      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           490      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           492      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           493      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           494      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           495      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           496      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           497      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           498      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           500      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           501      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           502      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           503      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           504      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           505      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           506      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           507      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           508      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           510      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           511      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           512      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           513      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           514      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           515      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           516      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           517      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           518      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           519      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           520      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           521      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           522      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           523      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           525      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           526      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           527      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           528      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           529      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           530      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           531      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           532      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           533      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           534      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           535      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           536      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           537      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           538      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           539      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           541      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           542      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           544      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           545      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           546      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           547      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           548      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           549      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           550      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           552      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           553      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           555      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           556      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           557      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           558      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           559      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##           560      0   0   0   0   0   0   0   0   0   0   0   0   0   0
##                 
## filteredTestPred 968 969 975 976 978 980 981 984 986 988 989 992 998 1000
##           4        0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           23       0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           41       0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           45       0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           47       0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           48       0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           51       0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           60       0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           64       0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           66       0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           70       0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           80       0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           82       0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           84       0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           86       0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           87       0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           88       0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           90       0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           91       0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           95       0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           97       0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           98       0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           99       0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           102      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           106      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           109      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           111      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           116      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           119      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           123      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           127      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           129      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           130      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           134      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           135      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           137      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           138      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           140      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           141      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           143      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           144      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           146      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           149      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           150      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           151      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           154      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           158      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           160      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           162      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           163      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           168      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           176      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           178      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           180      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           181      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           183      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           186      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           190      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           191      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           192      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           196      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           201      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           202      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           205      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           206      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           211      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           213      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           215      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           217      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           218      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           221      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           223      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           224      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           226      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           228      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           233      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           236      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           237      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           238      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           240      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           241      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           245      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           246      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           248      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           250      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           251      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           256      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           258      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           261      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           262      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           264      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           266      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           268      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           269      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           277      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           278      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           279      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           280      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           285      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           286      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           287      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           292      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           294      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           295      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           296      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           300      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           301      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           302      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           305      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           308      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           309      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           313      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           317      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           318      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           321      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           322      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           324      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           325      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           326      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           331      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           336      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           339      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           340      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           341      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           342      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           343      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           346      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           348      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           349      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           350      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           354      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           356      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           357      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           358      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           365      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           366      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           368      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           369      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           371      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           373      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           375      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           377      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           378      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           379      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           380      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           381      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           382      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           383      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           384      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           386      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           387      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           390      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           391      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           392      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           393      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           395      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           396      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           397      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           398      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           399      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           400      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           401      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           402      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           403      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           404      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           407      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           408      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           410      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           411      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           412      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           413      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           414      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           416      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           417      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           419      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           420      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           421      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           422      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           423      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           424      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           425      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           426      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           427      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           428      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           429      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           430      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           431      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           432      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           434      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           435      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           436      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           437      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           438      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           440      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           441      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           444      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           445      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           446      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           447      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           448      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           449      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           450      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           451      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           452      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           454      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           455      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           456      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           458      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           459      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           460      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           461      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           462      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           463      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           464      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           465      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           466      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           467      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           468      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           469      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           471      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           472      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           473      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           474      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           475      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           476      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           477      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           478      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           480      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           482      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           483      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           484      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           485      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           486      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           488      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           489      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           490      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           492      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           493      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           494      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           495      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           496      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           497      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           498      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           500      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           501      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           502      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           503      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           504      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           505      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           506      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           507      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           508      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           510      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           511      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           512      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           513      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           514      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           515      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           516      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           517      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           518      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           519      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           520      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           521      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           522      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           523      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           525      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           526      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           527      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           528      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           529      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           530      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           531      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           532      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           533      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           534      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           535      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           536      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           537      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           538      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           539      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           541      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           542      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           544      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           545      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           546      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           547      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           548      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           549      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           550      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           552      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           553      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           555      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           556      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           557      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           558      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           559      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##           560      0   0   0   0   0   0   0   0   0   0   0   0   0    0
##                 
## filteredTestPred 1100 1200 1300 1400 1500 1600 1700 1800 1900 2000 2100
##           4         0    0    0    0    0    0    0    0    0    0    0
##           23        0    0    0    0    0    0    0    0    0    0    0
##           41        0    0    0    0    0    0    0    0    0    0    0
##           45        0    0    0    0    0    0    0    0    0    0    0
##           47        0    0    0    0    0    0    0    0    0    0    0
##           48        0    0    0    0    0    0    0    0    0    0    0
##           51        0    0    0    0    0    0    0    0    0    0    0
##           60        0    0    0    0    0    0    0    0    0    0    0
##           64        0    0    0    0    0    0    0    0    0    0    0
##           66        0    0    0    0    0    0    0    0    0    0    0
##           70        0    0    0    0    0    0    0    0    0    0    0
##           80        0    0    0    0    0    0    0    0    0    0    0
##           82        0    0    0    0    0    0    0    0    0    0    0
##           84        0    0    0    0    0    0    0    0    0    0    0
##           86        0    0    0    0    0    0    0    0    0    0    0
##           87        0    0    0    0    0    0    0    0    0    0    0
##           88        0    0    0    0    0    0    0    0    0    0    0
##           90        0    0    0    0    0    0    0    0    0    0    0
##           91        0    0    0    0    0    0    0    0    0    0    0
##           95        0    0    0    0    0    0    0    0    0    0    0
##           97        0    0    0    0    0    0    0    0    0    0    0
##           98        0    0    0    0    0    0    0    0    0    0    0
##           99        0    0    0    0    0    0    0    0    0    0    0
##           102       0    0    0    0    0    0    0    0    0    0    0
##           106       0    0    0    0    0    0    0    0    0    0    0
##           109       0    0    0    0    0    0    0    0    0    0    0
##           111       0    0    0    0    0    0    0    0    0    0    0
##           116       0    0    0    0    0    0    0    0    0    0    0
##           119       0    0    0    0    0    0    0    0    0    0    0
##           123       0    0    0    0    0    0    0    0    0    0    0
##           127       0    0    0    0    0    0    0    0    0    0    0
##           129       0    0    0    0    0    0    0    0    0    0    0
##           130       0    0    0    0    0    0    0    0    0    0    0
##           134       0    0    0    0    0    0    0    0    0    0    0
##           135       0    0    0    0    0    0    0    0    0    0    0
##           137       0    0    0    0    0    0    0    0    0    0    0
##           138       0    0    0    0    0    0    0    0    0    0    0
##           140       0    0    0    0    0    0    0    0    0    0    0
##           141       0    0    0    0    0    0    0    0    0    0    0
##           143       0    0    0    0    0    0    0    0    0    0    0
##           144       0    0    0    0    0    0    0    0    0    0    0
##           146       0    0    0    0    0    0    0    0    0    0    0
##           149       0    0    0    0    0    0    0    0    0    0    0
##           150       0    0    0    0    0    0    0    0    0    0    0
##           151       0    0    0    0    0    0    0    0    0    0    0
##           154       0    0    0    0    0    0    0    0    0    0    0
##           158       0    0    0    0    0    0    0    0    0    0    0
##           160       0    0    0    0    0    0    0    0    0    0    0
##           162       0    0    0    0    0    0    0    0    0    0    0
##           163       0    0    0    0    0    0    0    0    0    0    0
##           168       0    0    0    0    0    0    0    0    0    0    0
##           176       0    0    0    0    0    0    0    0    0    0    0
##           178       0    0    0    0    0    0    0    0    0    0    0
##           180       0    0    0    0    0    0    0    0    0    0    0
##           181       0    0    0    0    0    0    0    0    0    0    0
##           183       0    0    0    0    0    0    0    0    0    0    0
##           186       0    0    0    0    0    0    0    0    0    0    0
##           190       0    0    0    0    0    0    0    0    0    0    0
##           191       0    0    0    0    0    0    0    0    0    0    0
##           192       0    0    0    0    0    0    0    0    0    0    0
##           196       0    0    0    0    0    0    0    0    0    0    0
##           201       0    0    0    0    0    0    0    0    0    0    0
##           202       0    0    0    0    0    0    0    0    0    0    0
##           205       0    0    0    0    0    0    0    0    0    0    0
##           206       0    0    0    0    0    0    0    0    0    0    0
##           211       0    0    0    0    0    0    0    0    0    0    0
##           213       0    0    0    0    0    0    0    0    0    0    0
##           215       0    0    0    0    0    0    0    0    0    0    0
##           217       0    0    0    0    0    0    0    0    0    0    0
##           218       0    0    0    0    0    0    0    0    0    0    0
##           221       0    0    0    0    0    0    0    0    0    0    0
##           223       0    0    0    0    0    0    0    0    0    0    0
##           224       0    0    0    0    0    0    0    0    0    0    0
##           226       0    0    0    0    0    0    0    0    0    0    0
##           228       0    0    0    0    0    0    0    0    0    0    0
##           233       0    0    0    0    0    0    0    0    0    0    0
##           236       0    0    0    0    0    0    0    0    0    0    0
##           237       0    0    0    0    0    0    0    0    0    0    0
##           238       0    0    0    0    0    0    0    0    0    0    0
##           240       0    0    0    0    0    0    0    0    0    0    0
##           241       0    0    0    0    0    0    0    0    0    0    0
##           245       0    0    0    0    0    0    0    0    0    0    0
##           246       0    0    0    0    0    0    0    0    0    0    0
##           248       0    0    0    0    0    0    0    0    0    0    0
##           250       0    0    0    0    0    0    0    0    0    0    0
##           251       0    0    0    0    0    0    0    0    0    0    0
##           256       0    0    0    0    0    0    0    0    0    0    0
##           258       0    0    0    0    0    0    0    0    0    0    0
##           261       0    0    0    0    0    0    0    0    0    0    0
##           262       0    0    0    0    0    0    0    0    0    0    0
##           264       0    0    0    0    0    0    0    0    0    0    0
##           266       0    0    0    0    0    0    0    0    0    0    0
##           268       0    0    0    0    0    0    0    0    0    0    0
##           269       0    0    0    0    0    0    0    0    0    0    0
##           277       0    0    0    0    0    0    0    0    0    0    0
##           278       0    0    0    0    0    0    0    0    0    0    0
##           279       0    0    0    0    0    0    0    0    0    0    0
##           280       0    0    0    0    0    0    0    0    0    0    0
##           285       0    0    0    0    0    0    0    0    0    0    0
##           286       0    0    0    0    0    0    0    0    0    0    0
##           287       0    0    0    0    0    0    0    0    0    0    0
##           292       0    0    0    0    0    0    0    0    0    0    0
##           294       0    0    0    0    0    0    0    0    0    0    0
##           295       0    0    0    0    0    0    0    0    0    0    0
##           296       0    0    0    0    0    0    0    0    0    0    0
##           300       0    0    0    0    0    0    0    0    0    0    0
##           301       0    0    0    0    0    0    0    0    0    0    0
##           302       0    0    0    0    0    0    0    0    0    0    0
##           305       0    0    0    0    0    0    0    0    0    0    0
##           308       0    0    0    0    0    0    0    0    0    0    0
##           309       0    0    0    0    0    0    0    0    0    0    0
##           313       0    0    0    0    0    0    0    0    0    0    0
##           317       0    0    0    0    0    0    0    0    0    0    0
##           318       0    0    0    0    0    0    0    0    0    0    0
##           321       0    0    0    0    0    0    0    0    0    0    0
##           322       0    0    0    0    0    0    0    0    0    0    0
##           324       0    0    0    0    0    0    0    0    0    0    0
##           325       0    0    0    0    0    0    0    0    0    0    0
##           326       0    0    0    0    0    0    0    0    0    0    0
##           331       0    0    0    0    0    0    0    0    0    0    0
##           336       0    0    0    0    0    0    0    0    0    0    0
##           339       0    0    0    0    0    0    0    0    0    0    0
##           340       0    0    0    0    0    0    0    0    0    0    0
##           341       0    0    0    0    0    0    0    0    0    0    0
##           342       0    0    0    0    0    0    0    0    0    0    0
##           343       0    0    0    0    0    0    0    0    0    0    0
##           346       0    0    0    0    0    0    0    0    0    0    0
##           348       0    0    0    0    0    0    0    0    0    0    0
##           349       0    0    0    0    0    0    0    0    0    0    0
##           350       0    0    0    0    0    0    0    0    0    0    0
##           354       0    0    0    0    0    0    0    0    0    0    0
##           356       0    0    0    0    0    0    0    0    0    0    0
##           357       0    0    0    0    0    0    0    0    0    0    0
##           358       0    0    0    0    0    0    0    0    0    0    0
##           365       0    0    0    0    0    0    0    0    0    0    0
##           366       0    0    0    0    0    0    0    0    0    0    0
##           368       0    0    0    0    0    0    0    0    0    0    0
##           369       0    0    0    0    0    0    0    0    0    0    0
##           371       0    0    0    0    0    0    0    0    0    0    0
##           373       0    0    0    0    0    0    0    0    0    0    0
##           375       0    0    0    0    0    0    0    0    0    0    0
##           377       0    0    0    0    0    0    0    0    0    0    0
##           378       0    0    0    0    0    0    0    0    0    0    0
##           379       0    0    0    0    0    0    0    0    0    0    0
##           380       0    0    0    0    0    0    0    0    0    0    0
##           381       0    0    0    0    0    0    0    0    0    0    0
##           382       0    0    0    0    0    0    0    0    0    0    0
##           383       0    0    0    0    0    0    0    0    0    0    0
##           384       0    0    0    0    0    0    0    0    0    0    0
##           386       0    0    0    0    0    0    0    0    0    0    0
##           387       0    0    0    0    0    0    0    0    0    0    0
##           390       0    0    0    0    0    0    0    0    0    0    0
##           391       0    0    0    0    0    0    0    0    0    0    0
##           392       0    0    0    0    0    0    0    0    0    0    0
##           393       0    0    0    0    0    0    0    0    0    0    0
##           395       0    0    0    0    0    0    0    0    0    0    0
##           396       0    0    0    0    0    0    0    0    0    0    0
##           397       0    0    0    0    0    0    0    0    0    0    0
##           398       0    0    0    0    0    0    0    0    0    0    0
##           399       0    0    0    0    0    0    0    0    0    0    0
##           400       0    0    0    0    0    0    0    0    0    0    0
##           401       0    0    0    0    0    0    0    0    0    0    0
##           402       0    0    0    0    0    0    0    0    0    0    0
##           403       0    0    0    0    0    0    0    0    0    0    0
##           404       0    0    0    0    0    0    0    0    0    0    0
##           407       0    0    0    0    0    0    0    0    0    0    0
##           408       0    0    0    0    0    0    0    0    0    0    0
##           410       0    0    0    0    0    0    0    0    0    0    0
##           411       0    0    0    0    0    0    0    0    0    0    0
##           412       0    0    0    0    0    0    0    0    0    0    0
##           413       0    0    0    0    0    0    0    0    0    0    0
##           414       0    0    0    0    0    0    0    0    0    0    0
##           416       0    0    0    0    0    0    0    0    0    0    0
##           417       0    0    0    0    0    0    0    0    0    0    0
##           419       0    0    0    0    0    0    0    0    0    0    0
##           420       0    0    0    0    0    0    0    0    0    0    0
##           421       0    0    0    0    0    0    0    0    0    0    0
##           422       0    0    0    0    0    0    0    0    0    0    0
##           423       0    0    0    0    0    0    0    0    0    0    0
##           424       0    0    0    0    0    0    0    0    0    0    0
##           425       0    0    0    0    0    0    0    0    0    0    0
##           426       0    0    0    0    0    0    0    0    0    0    0
##           427       0    0    0    0    0    0    0    0    0    0    0
##           428       0    0    0    0    0    0    0    0    0    0    0
##           429       0    0    0    0    0    0    0    0    0    0    0
##           430       0    0    0    0    0    0    0    0    0    0    0
##           431       0    0    0    0    0    0    0    0    0    0    0
##           432       0    0    0    0    0    0    0    0    0    0    0
##           434       0    0    0    0    0    0    0    0    0    0    0
##           435       0    0    0    0    0    0    0    0    0    0    0
##           436       0    0    0    0    0    0    0    0    0    0    0
##           437       0    0    0    0    0    0    0    0    0    0    0
##           438       0    0    0    0    0    0    0    0    0    0    0
##           440       0    0    0    0    0    0    0    0    0    0    0
##           441       0    0    0    0    0    0    0    0    0    0    0
##           444       0    0    0    0    0    0    0    0    0    0    0
##           445       0    0    0    0    0    0    0    0    0    0    0
##           446       0    0    0    0    0    0    0    0    0    0    0
##           447       0    0    0    0    0    0    0    0    0    0    0
##           448       0    0    0    0    0    0    0    0    0    0    0
##           449       0    0    0    0    0    0    0    0    0    0    0
##           450       0    0    0    0    0    0    0    0    0    0    0
##           451       0    0    0    0    0    0    0    0    0    0    0
##           452       0    0    0    0    0    0    0    0    0    0    0
##           454       0    0    0    0    0    0    0    0    0    0    0
##           455       0    0    0    0    0    0    0    0    0    0    0
##           456       0    0    0    0    0    0    0    0    0    0    0
##           458       0    0    0    0    0    0    0    0    0    0    0
##           459       0    0    0    0    0    0    0    0    0    0    0
##           460       0    0    0    0    0    0    0    0    0    0    0
##           461       0    0    0    0    0    0    0    0    0    0    0
##           462       0    0    0    0    0    0    0    0    0    0    0
##           463       0    0    0    0    0    0    0    0    0    0    0
##           464       0    0    0    0    0    0    0    0    0    0    0
##           465       0    0    0    0    0    0    0    0    0    0    0
##           466       0    0    0    0    0    0    0    0    0    0    0
##           467       0    0    0    0    0    0    0    0    0    0    0
##           468       0    0    0    0    0    0    0    0    0    0    0
##           469       0    0    0    0    0    0    0    0    0    0    0
##           471       0    0    0    0    0    0    0    0    0    0    0
##           472       0    0    0    0    0    0    0    0    0    0    0
##           473       0    0    0    0    0    0    0    0    0    0    0
##           474       0    0    0    0    0    0    0    0    0    0    0
##           475       0    0    0    0    0    0    0    0    0    0    0
##           476       0    0    0    0    0    0    0    0    0    0    0
##           477       0    0    0    0    0    0    0    0    0    0    0
##           478       0    0    0    0    0    0    0    0    0    0    0
##           480       0    0    0    0    0    0    0    0    0    0    0
##           482       0    0    0    0    0    0    0    0    0    0    0
##           483       0    0    0    0    0    0    0    0    0    0    0
##           484       0    0    0    0    0    0    0    0    0    0    0
##           485       0    0    0    0    0    0    0    0    0    0    0
##           486       0    0    0    0    0    0    0    0    0    0    0
##           488       0    0    0    0    0    0    0    0    0    0    0
##           489       0    0    0    0    0    0    0    0    0    0    0
##           490       0    0    0    0    0    0    0    0    0    0    0
##           492       0    0    0    0    0    0    0    0    0    0    0
##           493       0    0    0    0    0    0    0    0    0    0    0
##           494       0    0    0    0    0    0    0    0    0    0    0
##           495       0    0    0    0    0    0    0    0    0    0    0
##           496       0    0    0    0    0    0    0    0    0    0    0
##           497       0    0    0    0    0    0    0    0    0    0    0
##           498       0    0    0    0    0    0    0    0    0    0    0
##           500       0    0    0    0    0    0    0    0    0    0    0
##           501       0    0    0    0    0    0    0    0    0    0    0
##           502       0    0    0    0    0    0    0    0    0    0    0
##           503       0    0    0    0    0    0    0    0    0    0    0
##           504       0    0    0    0    0    0    0    0    0    0    0
##           505       0    0    0    0    0    0    0    0    0    0    0
##           506       0    0    0    0    0    0    0    0    0    0    0
##           507       0    0    0    0    0    0    0    0    0    0    0
##           508       0    0    0    0    0    0    0    0    0    0    0
##           510       0    0    0    0    0    0    0    0    0    0    0
##           511       0    0    0    0    0    0    0    0    0    0    0
##           512       0    0    0    0    0    0    0    0    0    0    0
##           513       0    0    0    0    0    0    0    0    0    0    0
##           514       0    0    0    0    0    0    0    0    0    0    0
##           515       0    0    0    0    0    0    0    0    0    0    0
##           516       0    0    0    0    0    0    0    0    0    0    0
##           517       0    0    0    0    0    0    0    0    0    0    0
##           518       0    0    0    0    0    0    0    0    0    0    0
##           519       0    0    0    0    0    0    0    0    0    0    0
##           520       0    0    0    0    0    0    0    0    0    0    0
##           521       0    0    0    0    0    0    0    0    0    0    0
##           522       0    0    0    0    0    0    0    0    0    0    0
##           523       0    0    0    0    0    0    0    0    0    0    0
##           525       0    0    0    0    0    0    0    0    0    0    0
##           526       0    0    0    0    0    0    0    0    0    0    0
##           527       0    0    0    0    0    0    0    0    0    0    0
##           528       0    0    0    0    0    0    0    0    0    0    0
##           529       0    0    0    0    0    0    0    0    0    0    0
##           530       0    0    0    0    0    0    0    0    0    0    0
##           531       0    0    0    0    0    0    0    0    0    0    0
##           532       0    0    0    0    0    0    0    0    0    0    0
##           533       0    0    0    0    0    0    0    0    0    0    0
##           534       0    0    0    0    0    0    0    0    0    0    0
##           535       0    0    0    0    0    0    0    0    0    0    0
##           536       0    0    0    0    0    0    0    0    0    0    0
##           537       0    0    0    0    0    0    0    0    0    0    0
##           538       0    0    0    0    0    0    0    0    0    0    0
##           539       0    0    0    0    0    0    0    0    0    0    0
##           541       0    0    0    0    0    0    0    0    0    0    0
##           542       0    0    0    0    0    0    0    0    0    0    0
##           544       0    0    0    0    0    0    0    0    0    0    0
##           545       0    0    0    0    0    0    0    0    0    0    0
##           546       0    0    0    0    0    0    0    0    0    0    0
##           547       0    0    0    0    0    0    0    0    0    0    0
##           548       0    0    0    0    0    0    0    0    0    0    0
##           549       0    0    0    0    0    0    0    0    0    0    0
##           550       0    0    0    0    0    0    0    0    0    0    0
##           552       0    0    0    0    0    0    0    0    0    0    0
##           553       0    0    0    0    0    0    0    0    0    0    0
##           555       0    0    0    0    0    0    0    0    0    0    0
##           556       0    0    0    0    0    0    0    0    0    0    0
##           557       0    0    0    0    0    0    0    0    0    0    0
##           558       0    0    0    0    0    0    0    0    0    0    0
##           559       0    0    0    0    0    0    0    0    0    0    0
##           560       0    0    0    0    0    0    0    0    0    0    0
##                 
## filteredTestPred 2200 2300 2400 2500 2600 2700 2800 2900 3000 3100 3200
##           4         0    0    0    0    0    0    0    0    0    0    0
##           23        0    0    0    0    0    0    0    0    0    0    0
##           41        0    0    0    0    0    0    0    0    0    0    0
##           45        0    0    0    0    0    0    0    0    0    0    0
##           47        0    0    0    0    0    0    0    0    0    0    0
##           48        0    0    0    0    0    0    0    0    0    0    0
##           51        0    0    0    0    0    0    0    0    0    0    0
##           60        0    0    0    0    0    0    0    0    0    0    0
##           64        0    0    0    0    0    0    0    0    0    0    0
##           66        0    0    0    0    0    0    0    0    0    0    0
##           70        0    0    0    0    0    0    0    0    0    0    0
##           80        0    0    0    0    0    0    0    0    0    0    0
##           82        0    0    0    0    0    0    0    0    0    0    0
##           84        0    0    0    0    0    0    0    0    0    0    0
##           86        0    0    0    0    0    0    0    0    0    0    0
##           87        0    0    0    0    0    0    0    0    0    0    0
##           88        0    0    0    0    0    0    0    0    0    0    0
##           90        0    0    0    0    0    0    0    0    0    0    0
##           91        0    0    0    0    0    0    0    0    0    0    0
##           95        0    0    0    0    0    0    0    0    0    0    0
##           97        0    0    0    0    0    0    0    0    0    0    0
##           98        0    0    0    0    0    0    0    0    0    0    0
##           99        0    0    0    0    0    0    0    0    0    0    0
##           102       0    0    0    0    0    0    0    0    0    0    0
##           106       0    0    0    0    0    0    0    0    0    0    0
##           109       0    0    0    0    0    0    0    0    0    0    0
##           111       0    0    0    0    0    0    0    0    0    0    0
##           116       0    0    0    0    0    0    0    0    0    0    0
##           119       0    0    0    0    0    0    0    0    0    0    0
##           123       0    0    0    0    0    0    0    0    0    0    0
##           127       0    0    0    0    0    0    0    0    0    0    0
##           129       0    0    0    0    0    0    0    0    0    0    0
##           130       0    0    0    0    0    0    0    0    0    0    0
##           134       0    0    0    0    0    0    0    0    0    0    0
##           135       0    0    0    0    0    0    0    0    0    0    0
##           137       0    0    0    0    0    0    0    0    0    0    0
##           138       0    0    0    0    0    0    0    0    0    0    0
##           140       0    0    0    0    0    0    0    0    0    0    0
##           141       0    0    0    0    0    0    0    0    0    0    0
##           143       0    0    0    0    0    0    0    0    0    0    0
##           144       0    0    0    0    0    0    0    0    0    0    0
##           146       0    0    0    0    0    0    0    0    0    0    0
##           149       0    0    0    0    0    0    0    0    0    0    0
##           150       0    0    0    0    0    0    0    0    0    0    0
##           151       0    0    0    0    0    0    0    0    0    0    0
##           154       0    0    0    0    0    0    0    0    0    0    0
##           158       0    0    0    0    0    0    0    0    0    0    0
##           160       0    0    0    0    0    0    0    0    0    0    0
##           162       0    0    0    0    0    0    0    0    0    0    0
##           163       0    0    0    0    0    0    0    0    0    0    0
##           168       0    0    0    0    0    0    0    0    0    0    0
##           176       0    0    0    0    0    0    0    0    0    0    0
##           178       0    0    0    0    0    0    0    0    0    0    0
##           180       0    0    0    0    0    0    0    0    0    0    0
##           181       0    0    0    0    0    0    0    0    0    0    0
##           183       0    0    0    0    0    0    0    0    0    0    0
##           186       0    0    0    0    0    0    0    0    0    0    0
##           190       0    0    0    0    0    0    0    0    0    0    0
##           191       0    0    0    0    0    0    0    0    0    0    0
##           192       0    0    0    0    0    0    0    0    0    0    0
##           196       0    0    0    0    0    0    0    0    0    0    0
##           201       0    0    0    0    0    0    0    0    0    0    0
##           202       0    0    0    0    0    0    0    0    0    0    0
##           205       0    0    0    0    0    0    0    0    0    0    0
##           206       0    0    0    0    0    0    0    0    0    0    0
##           211       0    0    0    0    0    0    0    0    0    0    0
##           213       0    0    0    0    0    0    0    0    0    0    0
##           215       0    0    0    0    0    0    0    0    0    0    0
##           217       0    0    0    0    0    0    0    0    0    0    0
##           218       0    0    0    0    0    0    0    0    0    0    0
##           221       0    0    0    0    0    0    0    0    0    0    0
##           223       0    0    0    0    0    0    0    0    0    0    0
##           224       0    0    0    0    0    0    0    0    0    0    0
##           226       0    0    0    0    0    0    0    0    0    0    0
##           228       0    0    0    0    0    0    0    0    0    0    0
##           233       0    0    0    0    0    0    0    0    0    0    0
##           236       0    0    0    0    0    0    0    0    0    0    0
##           237       0    0    0    0    0    0    0    0    0    0    0
##           238       0    0    0    0    0    0    0    0    0    0    0
##           240       0    0    0    0    0    0    0    0    0    0    0
##           241       0    0    0    0    0    0    0    0    0    0    0
##           245       0    0    0    0    0    0    0    0    0    0    0
##           246       0    0    0    0    0    0    0    0    0    0    0
##           248       0    0    0    0    0    0    0    0    0    0    0
##           250       0    0    0    0    0    0    0    0    0    0    0
##           251       0    0    0    0    0    0    0    0    0    0    0
##           256       0    0    0    0    0    0    0    0    0    0    0
##           258       0    0    0    0    0    0    0    0    0    0    0
##           261       0    0    0    0    0    0    0    0    0    0    0
##           262       0    0    0    0    0    0    0    0    0    0    0
##           264       0    0    0    0    0    0    0    0    0    0    0
##           266       0    0    0    0    0    0    0    0    0    0    0
##           268       0    0    0    0    0    0    0    0    0    0    0
##           269       0    0    0    0    0    0    0    0    0    0    0
##           277       0    0    0    0    0    0    0    0    0    0    0
##           278       0    0    0    0    0    0    0    0    0    0    0
##           279       0    0    0    0    0    0    0    0    0    0    0
##           280       0    0    0    0    0    0    0    0    0    0    0
##           285       0    0    0    0    0    0    0    0    0    0    0
##           286       0    0    0    0    0    0    0    0    0    0    0
##           287       0    0    0    0    0    0    0    0    0    0    0
##           292       0    0    0    0    0    0    0    0    0    0    0
##           294       0    0    0    0    0    0    0    0    0    0    0
##           295       0    0    0    0    0    0    0    0    0    0    0
##           296       0    0    0    0    0    0    0    0    0    0    0
##           300       0    0    0    0    0    0    0    0    0    0    0
##           301       0    0    0    0    0    0    0    0    0    0    0
##           302       0    0    0    0    0    0    0    0    0    0    0
##           305       0    0    0    0    0    0    0    0    0    0    0
##           308       0    0    0    0    0    0    0    0    0    0    0
##           309       0    0    0    0    0    0    0    0    0    0    0
##           313       0    0    0    0    0    0    0    0    0    0    0
##           317       0    0    0    0    0    0    0    0    0    0    0
##           318       0    0    0    0    0    0    0    0    0    0    0
##           321       0    0    0    0    0    0    0    0    0    0    0
##           322       0    0    0    0    0    0    0    0    0    0    0
##           324       0    0    0    0    0    0    0    0    0    0    0
##           325       0    0    0    0    0    0    0    0    0    0    0
##           326       0    0    0    0    0    0    0    0    0    0    0
##           331       0    0    0    0    0    0    0    0    0    0    0
##           336       0    0    0    0    0    0    0    0    0    0    0
##           339       0    0    0    0    0    0    0    0    0    0    0
##           340       0    0    0    0    0    0    0    0    0    0    0
##           341       0    0    0    0    0    0    0    0    0    0    0
##           342       0    0    0    0    0    0    0    0    0    0    0
##           343       0    0    0    0    0    0    0    0    0    0    0
##           346       0    0    0    0    0    0    0    0    0    0    0
##           348       0    0    0    0    0    0    0    0    0    0    0
##           349       0    0    0    0    0    0    0    0    0    0    0
##           350       0    0    0    0    0    0    0    0    0    0    0
##           354       0    0    0    0    0    0    0    0    0    0    0
##           356       0    0    0    0    0    0    0    0    0    0    0
##           357       0    0    0    0    0    0    0    0    0    0    0
##           358       0    0    0    0    0    0    0    0    0    0    0
##           365       0    0    0    0    0    0    0    0    0    0    0
##           366       0    0    0    0    0    0    0    0    0    0    0
##           368       0    0    0    0    0    0    0    0    0    0    0
##           369       0    0    0    0    0    0    0    0    0    0    0
##           371       0    0    0    0    0    0    0    0    0    0    0
##           373       0    0    0    0    0    0    0    0    0    0    0
##           375       0    0    0    0    0    0    0    0    0    0    0
##           377       0    0    0    0    0    0    0    0    0    0    0
##           378       0    0    0    0    0    0    0    0    0    0    0
##           379       0    0    0    0    0    0    0    0    0    0    0
##           380       0    0    0    0    0    0    0    0    0    0    0
##           381       0    0    0    0    0    0    0    0    0    0    0
##           382       0    0    0    0    0    0    0    0    0    0    0
##           383       0    0    0    0    0    0    0    0    0    0    0
##           384       0    0    0    0    0    0    0    0    0    0    0
##           386       0    0    0    0    0    0    0    0    0    0    0
##           387       0    0    0    0    0    0    0    0    0    0    0
##           390       0    0    0    0    0    0    0    0    0    0    0
##           391       0    0    0    0    0    0    0    0    0    0    0
##           392       0    0    0    0    0    0    0    0    0    0    0
##           393       0    0    0    0    0    0    0    0    0    0    0
##           395       0    0    0    0    0    0    0    0    0    0    0
##           396       0    0    0    0    0    0    0    0    0    0    0
##           397       0    0    0    0    0    0    0    0    0    0    0
##           398       0    0    0    0    0    0    0    0    0    0    0
##           399       0    0    0    0    0    0    0    0    0    0    0
##           400       0    0    0    0    0    0    0    0    0    0    0
##           401       0    0    0    0    0    0    0    0    0    0    0
##           402       0    0    0    0    0    0    0    0    0    0    0
##           403       0    0    0    0    0    0    0    0    0    0    0
##           404       0    0    0    0    0    0    0    0    0    0    0
##           407       0    0    0    0    0    0    0    0    0    0    0
##           408       0    0    0    0    0    0    0    0    0    0    0
##           410       0    0    0    0    0    0    0    0    0    0    0
##           411       0    0    0    0    0    0    0    0    0    0    0
##           412       0    0    0    0    0    0    0    0    0    0    0
##           413       0    0    0    0    0    0    0    0    0    0    0
##           414       0    0    0    0    0    0    0    0    0    0    0
##           416       0    0    0    0    0    0    0    0    0    0    0
##           417       0    0    0    0    0    0    0    0    0    0    0
##           419       0    0    0    0    0    0    0    0    0    0    0
##           420       0    0    0    0    0    0    0    0    0    0    0
##           421       0    0    0    0    0    0    0    0    0    0    0
##           422       0    0    0    0    0    0    0    0    0    0    0
##           423       0    0    0    0    0    0    0    0    0    0    0
##           424       0    0    0    0    0    0    0    0    0    0    0
##           425       0    0    0    0    0    0    0    0    0    0    0
##           426       0    0    0    0    0    0    0    0    0    0    0
##           427       0    0    0    0    0    0    0    0    0    0    0
##           428       0    0    0    0    0    0    0    0    0    0    0
##           429       0    0    0    0    0    0    0    0    0    0    0
##           430       0    0    0    0    0    0    0    0    0    0    0
##           431       0    0    0    0    0    0    0    0    0    0    0
##           432       0    0    0    0    0    0    0    0    0    0    0
##           434       0    0    0    0    0    0    0    0    0    0    0
##           435       0    0    0    0    0    0    0    0    0    0    0
##           436       0    0    0    0    0    0    0    0    0    0    0
##           437       0    0    0    0    0    0    0    0    0    0    0
##           438       0    0    0    0    0    0    0    0    0    0    0
##           440       0    0    0    0    0    0    0    0    0    0    0
##           441       0    0    0    0    0    0    0    0    0    0    0
##           444       0    0    0    0    0    0    0    0    0    0    0
##           445       0    0    0    0    0    0    0    0    0    0    0
##           446       0    0    0    0    0    0    0    0    0    0    0
##           447       0    0    0    0    0    0    0    0    0    0    0
##           448       0    0    0    0    0    0    0    0    0    0    0
##           449       0    0    0    0    0    0    0    0    0    0    0
##           450       0    0    0    0    0    0    0    0    0    0    0
##           451       0    0    0    0    0    0    0    0    0    0    0
##           452       0    0    0    0    0    0    0    0    0    0    0
##           454       0    0    0    0    0    0    0    0    0    0    0
##           455       0    0    0    0    0    0    0    0    0    0    0
##           456       0    0    0    0    0    0    0    0    0    0    0
##           458       0    0    0    0    0    0    0    0    0    0    0
##           459       0    0    0    0    0    0    0    0    0    0    0
##           460       0    0    0    0    0    0    0    0    0    0    0
##           461       0    0    0    0    0    0    0    0    0    0    0
##           462       0    0    0    0    0    0    0    0    0    0    0
##           463       0    0    0    0    0    0    0    0    0    0    0
##           464       0    0    0    0    0    0    0    0    0    0    0
##           465       0    0    0    0    0    0    0    0    0    0    0
##           466       0    0    0    0    0    0    0    0    0    0    0
##           467       0    0    0    0    0    0    0    0    0    0    0
##           468       0    0    0    0    0    0    0    0    0    0    0
##           469       0    0    0    0    0    0    0    0    0    0    0
##           471       0    0    0    0    0    0    0    0    0    0    0
##           472       0    0    0    0    0    0    0    0    0    0    0
##           473       0    0    0    0    0    0    0    0    0    0    0
##           474       0    0    0    0    0    0    0    0    0    0    0
##           475       0    0    0    0    0    0    0    0    0    0    0
##           476       0    0    0    0    0    0    0    0    0    0    0
##           477       0    0    0    0    0    0    0    0    0    0    0
##           478       0    0    0    0    0    0    0    0    0    0    0
##           480       0    0    0    0    0    0    0    0    0    0    0
##           482       0    0    0    0    0    0    0    0    0    0    0
##           483       0    0    0    0    0    0    0    0    0    0    0
##           484       0    0    0    0    0    0    0    0    0    0    0
##           485       0    0    0    0    0    0    0    0    0    0    0
##           486       0    0    0    0    0    0    0    0    0    0    0
##           488       0    0    0    0    0    0    0    0    0    0    0
##           489       0    0    0    0    0    0    0    0    0    0    0
##           490       0    0    0    0    0    0    0    0    0    0    0
##           492       0    0    0    0    0    0    0    0    0    0    0
##           493       0    0    0    0    0    0    0    0    0    0    0
##           494       0    0    0    0    0    0    0    0    0    0    0
##           495       0    0    0    0    0    0    0    0    0    0    0
##           496       0    0    0    0    0    0    0    0    0    0    0
##           497       0    0    0    0    0    0    0    0    0    0    0
##           498       0    0    0    0    0    0    0    0    0    0    0
##           500       0    0    0    0    0    0    0    0    0    0    0
##           501       0    0    0    0    0    0    0    0    0    0    0
##           502       0    0    0    0    0    0    0    0    0    0    0
##           503       0    0    0    0    0    0    0    0    0    0    0
##           504       0    0    0    0    0    0    0    0    0    0    0
##           505       0    0    0    0    0    0    0    0    0    0    0
##           506       0    0    0    0    0    0    0    0    0    0    0
##           507       0    0    0    0    0    0    0    0    0    0    0
##           508       0    0    0    0    0    0    0    0    0    0    0
##           510       0    0    0    0    0    0    0    0    0    0    0
##           511       0    0    0    0    0    0    0    0    0    0    0
##           512       0    0    0    0    0    0    0    0    0    0    0
##           513       0    0    0    0    0    0    0    0    0    0    0
##           514       0    0    0    0    0    0    0    0    0    0    0
##           515       0    0    0    0    0    0    0    0    0    0    0
##           516       0    0    0    0    0    0    0    0    0    0    0
##           517       0    0    0    0    0    0    0    0    0    0    0
##           518       0    0    0    0    0    0    0    0    0    0    0
##           519       0    0    0    0    0    0    0    0    0    0    0
##           520       0    0    0    0    0    0    0    0    0    0    0
##           521       0    0    0    0    0    0    0    0    0    0    0
##           522       0    0    0    0    0    0    0    0    0    0    0
##           523       0    0    0    0    0    0    0    0    0    0    0
##           525       0    0    0    0    0    0    0    0    0    0    0
##           526       0    0    0    0    0    0    0    0    0    0    0
##           527       0    0    0    0    0    0    0    0    0    0    0
##           528       0    0    0    0    0    0    0    0    0    0    0
##           529       0    0    0    0    0    0    0    0    0    0    0
##           530       0    0    0    0    0    0    0    0    0    0    0
##           531       0    0    0    0    0    0    0    0    0    0    0
##           532       0    0    0    0    0    0    0    0    0    0    0
##           533       0    0    0    0    0    0    0    0    0    0    0
##           534       0    0    0    0    0    0    0    0    0    0    0
##           535       0    0    0    0    0    0    0    0    0    0    0
##           536       0    0    0    0    0    0    0    0    0    0    0
##           537       0    0    0    0    0    0    0    0    0    0    0
##           538       0    0    0    0    0    0    0    0    0    0    0
##           539       0    0    0    0    0    0    0    0    0    0    0
##           541       0    0    0    0    0    0    0    0    0    0    0
##           542       0    0    0    0    0    0    0    0    0    0    0
##           544       0    0    0    0    0    0    0    0    0    0    0
##           545       0    0    0    0    0    0    0    0    0    0    0
##           546       0    0    0    0    0    0    0    0    0    0    0
##           547       0    0    0    0    0    0    0    0    0    0    0
##           548       0    0    0    0    0    0    0    0    0    0    0
##           549       0    0    0    0    0    0    0    0    0    0    0
##           550       0    0    0    0    0    0    0    0    0    0    0
##           552       0    0    0    0    0    0    0    0    0    0    0
##           553       0    0    0    0    0    0    0    0    0    0    0
##           555       0    0    0    0    0    0    0    0    0    0    0
##           556       0    0    0    0    0    0    0    0    0    0    0
##           557       0    0    0    0    0    0    0    0    0    0    0
##           558       0    0    0    0    0    0    0    0    0    0    0
##           559       0    0    0    0    0    0    0    0    0    0    0
##           560       0    0    0    0    0    0    0    0    0    0    0
##                 
## filteredTestPred 3300 3400 3500 3600 3700 3800 3900 4000 4100 4200 4300
##           4         0    0    0    0    0    0    0    0    0    0    0
##           23        0    0    0    0    0    0    0    0    0    0    0
##           41        0    0    0    0    0    0    0    0    0    0    0
##           45        0    0    0    0    0    0    0    0    0    0    0
##           47        0    0    0    0    0    0    0    0    0    0    0
##           48        0    0    0    0    0    0    0    0    0    0    0
##           51        0    0    0    0    0    0    0    0    0    0    0
##           60        0    0    0    0    0    0    0    0    0    0    0
##           64        0    0    0    0    0    0    0    0    0    0    0
##           66        0    0    0    0    0    0    0    0    0    0    0
##           70        0    0    0    0    0    0    0    0    0    0    0
##           80        0    0    0    0    0    0    0    0    0    0    0
##           82        0    0    0    0    0    0    0    0    0    0    0
##           84        0    0    0    0    0    0    0    0    0    0    0
##           86        0    0    0    0    0    0    0    0    0    0    0
##           87        0    0    0    0    0    0    0    0    0    0    0
##           88        0    0    0    0    0    0    0    0    0    0    0
##           90        0    0    0    0    0    0    0    0    0    0    0
##           91        0    0    0    0    0    0    0    0    0    0    0
##           95        0    0    0    0    0    0    0    0    0    0    0
##           97        0    0    0    0    0    0    0    0    0    0    0
##           98        0    0    0    0    0    0    0    0    0    0    0
##           99        0    0    0    0    0    0    0    0    0    0    0
##           102       0    0    0    0    0    0    0    0    0    0    0
##           106       0    0    0    0    0    0    0    0    0    0    0
##           109       0    0    0    0    0    0    0    0    0    0    0
##           111       0    0    0    0    0    0    0    0    0    0    0
##           116       0    0    0    0    0    0    0    0    0    0    0
##           119       0    0    0    0    0    0    0    0    0    0    0
##           123       0    0    0    0    0    0    0    0    0    0    0
##           127       0    0    0    0    0    0    0    0    0    0    0
##           129       0    0    0    0    0    0    0    0    0    0    0
##           130       0    0    0    0    0    0    0    0    0    0    0
##           134       0    0    0    0    0    0    0    0    0    0    0
##           135       0    0    0    0    0    0    0    0    0    0    0
##           137       0    0    0    0    0    0    0    0    0    0    0
##           138       0    0    0    0    0    0    0    0    0    0    0
##           140       0    0    0    0    0    0    0    0    0    0    0
##           141       0    0    0    0    0    0    0    0    0    0    0
##           143       0    0    0    0    0    0    0    0    0    0    0
##           144       0    0    0    0    0    0    0    0    0    0    0
##           146       0    0    0    0    0    0    0    0    0    0    0
##           149       0    0    0    0    0    0    0    0    0    0    0
##           150       0    0    0    0    0    0    0    0    0    0    0
##           151       0    0    0    0    0    0    0    0    0    0    0
##           154       0    0    0    0    0    0    0    0    0    0    0
##           158       0    0    0    0    0    0    0    0    0    0    0
##           160       0    0    0    0    0    0    0    0    0    0    0
##           162       0    0    0    0    0    0    0    0    0    0    0
##           163       0    0    0    0    0    0    0    0    0    0    0
##           168       0    0    0    0    0    0    0    0    0    0    0
##           176       0    0    0    0    0    0    0    0    0    0    0
##           178       0    0    0    0    0    0    0    0    0    0    0
##           180       0    0    0    0    0    0    0    0    0    0    0
##           181       0    0    0    0    0    0    0    0    0    0    0
##           183       0    0    0    0    0    0    0    0    0    0    0
##           186       0    0    0    0    0    0    0    0    0    0    0
##           190       0    0    0    0    0    0    0    0    0    0    0
##           191       0    0    0    0    0    0    0    0    0    0    0
##           192       0    0    0    0    0    0    0    0    0    0    0
##           196       0    0    0    0    0    0    0    0    0    0    0
##           201       0    0    0    0    0    0    0    0    0    0    0
##           202       0    0    0    0    0    0    0    0    0    0    0
##           205       0    0    0    0    0    0    0    0    0    0    0
##           206       0    0    0    0    0    0    0    0    0    0    0
##           211       0    0    0    0    0    0    0    0    0    0    0
##           213       0    0    0    0    0    0    0    0    0    0    0
##           215       0    0    0    0    0    0    0    0    0    0    0
##           217       0    0    0    0    0    0    0    0    0    0    0
##           218       0    0    0    0    0    0    0    0    0    0    0
##           221       0    0    0    0    0    0    0    0    0    0    0
##           223       0    0    0    0    0    0    0    0    0    0    0
##           224       0    0    0    0    0    0    0    0    0    0    0
##           226       0    0    0    0    0    0    0    0    0    0    0
##           228       0    0    0    0    0    0    0    0    0    0    0
##           233       0    0    0    0    0    0    0    0    0    0    0
##           236       0    0    0    0    0    0    0    0    0    0    0
##           237       0    0    0    0    0    0    0    0    0    0    0
##           238       0    0    0    0    0    0    0    0    0    0    0
##           240       0    0    0    0    0    0    0    0    0    0    0
##           241       0    0    0    0    0    0    0    0    0    0    0
##           245       0    0    0    0    0    0    0    0    0    0    0
##           246       0    0    0    0    0    0    0    0    0    0    0
##           248       0    0    0    0    0    0    0    0    0    0    0
##           250       0    0    0    0    0    0    0    0    0    0    0
##           251       0    0    0    0    0    0    0    0    0    0    0
##           256       0    0    0    0    0    0    0    0    0    0    0
##           258       0    0    0    0    0    0    0    0    0    0    0
##           261       0    0    0    0    0    0    0    0    0    0    0
##           262       0    0    0    0    0    0    0    0    0    0    0
##           264       0    0    0    0    0    0    0    0    0    0    0
##           266       0    0    0    0    0    0    0    0    0    0    0
##           268       0    0    0    0    0    0    0    0    0    0    0
##           269       0    0    0    0    0    0    0    0    0    0    0
##           277       0    0    0    0    0    0    0    0    0    0    0
##           278       0    0    0    0    0    0    0    0    0    0    0
##           279       0    0    0    0    0    0    0    0    0    0    0
##           280       0    0    0    0    0    0    0    0    0    0    0
##           285       0    0    0    0    0    0    0    0    0    0    0
##           286       0    0    0    0    0    0    0    0    0    0    0
##           287       0    0    0    0    0    0    0    0    0    0    0
##           292       0    0    0    0    0    0    0    0    0    0    0
##           294       0    0    0    0    0    0    0    0    0    0    0
##           295       0    0    0    0    0    0    0    0    0    0    0
##           296       0    0    0    0    0    0    0    0    0    0    0
##           300       0    0    0    0    0    0    0    0    0    0    0
##           301       0    0    0    0    0    0    0    0    0    0    0
##           302       0    0    0    0    0    0    0    0    0    0    0
##           305       0    0    0    0    0    0    0    0    0    0    0
##           308       0    0    0    0    0    0    0    0    0    0    0
##           309       0    0    0    0    0    0    0    0    0    0    0
##           313       0    0    0    0    0    0    0    0    0    0    0
##           317       0    0    0    0    0    0    0    0    0    0    0
##           318       0    0    0    0    0    0    0    0    0    0    0
##           321       0    0    0    0    0    0    0    0    0    0    0
##           322       0    0    0    0    0    0    0    0    0    0    0
##           324       0    0    0    0    0    0    0    0    0    0    0
##           325       0    0    0    0    0    0    0    0    0    0    0
##           326       0    0    0    0    0    0    0    0    0    0    0
##           331       0    0    0    0    0    0    0    0    0    0    0
##           336       0    0    0    0    0    0    0    0    0    0    0
##           339       0    0    0    0    0    0    0    0    0    0    0
##           340       0    0    0    0    0    0    0    0    0    0    0
##           341       0    0    0    0    0    0    0    0    0    0    0
##           342       0    0    0    0    0    0    0    0    0    0    0
##           343       0    0    0    0    0    0    0    0    0    0    0
##           346       0    0    0    0    0    0    0    0    0    0    0
##           348       0    0    0    0    0    0    0    0    0    0    0
##           349       0    0    0    0    0    0    0    0    0    0    0
##           350       0    0    0    0    0    0    0    0    0    0    0
##           354       0    0    0    0    0    0    0    0    0    0    0
##           356       0    0    0    0    0    0    0    0    0    0    0
##           357       0    0    0    0    0    0    0    0    0    0    0
##           358       0    0    0    0    0    0    0    0    0    0    0
##           365       0    0    0    0    0    0    0    0    0    0    0
##           366       0    0    0    0    0    0    0    0    0    0    0
##           368       0    0    0    0    0    0    0    0    0    0    0
##           369       0    0    0    0    0    0    0    0    0    0    0
##           371       0    0    0    0    0    0    0    0    0    0    0
##           373       0    0    0    0    0    0    0    0    0    0    0
##           375       0    0    0    0    0    0    0    0    0    0    0
##           377       0    0    0    0    0    0    0    0    0    0    0
##           378       0    0    0    0    0    0    0    0    0    0    0
##           379       0    0    0    0    0    0    0    0    0    0    0
##           380       0    0    0    0    0    0    0    0    0    0    0
##           381       0    0    0    0    0    0    0    0    0    0    0
##           382       0    0    0    0    0    0    0    0    0    0    0
##           383       0    0    0    0    0    0    0    0    0    0    0
##           384       0    0    0    0    0    0    0    0    0    0    0
##           386       0    0    0    0    0    0    0    0    0    0    0
##           387       0    0    0    0    0    0    0    0    0    0    0
##           390       0    0    0    0    0    0    0    0    0    0    0
##           391       0    0    0    0    0    0    0    0    0    0    0
##           392       0    0    0    0    0    0    0    0    0    0    0
##           393       0    0    0    0    0    0    0    0    0    0    0
##           395       0    0    0    0    0    0    0    0    0    0    0
##           396       0    0    0    0    0    0    0    0    0    0    0
##           397       0    0    0    0    0    0    0    0    0    0    0
##           398       0    0    0    0    0    0    0    0    0    0    0
##           399       0    0    0    0    0    0    0    0    0    0    0
##           400       0    0    0    0    0    0    0    0    0    0    0
##           401       0    0    0    0    0    0    0    0    0    0    0
##           402       0    0    0    0    0    0    0    0    0    0    0
##           403       0    0    0    0    0    0    0    0    0    0    0
##           404       0    0    0    0    0    0    0    0    0    0    0
##           407       0    0    0    0    0    0    0    0    0    0    0
##           408       0    0    0    0    0    0    0    0    0    0    0
##           410       0    0    0    0    0    0    0    0    0    0    0
##           411       0    0    0    0    0    0    0    0    0    0    0
##           412       0    0    0    0    0    0    0    0    0    0    0
##           413       0    0    0    0    0    0    0    0    0    0    0
##           414       0    0    0    0    0    0    0    0    0    0    0
##           416       0    0    0    0    0    0    0    0    0    0    0
##           417       0    0    0    0    0    0    0    0    0    0    0
##           419       0    0    0    0    0    0    0    0    0    0    0
##           420       0    0    0    0    0    0    0    0    0    0    0
##           421       0    0    0    0    0    0    0    0    0    0    0
##           422       0    0    0    0    0    0    0    0    0    0    0
##           423       0    0    0    0    0    0    0    0    0    0    0
##           424       0    0    0    0    0    0    0    0    0    0    0
##           425       0    0    0    0    0    0    0    0    0    0    0
##           426       0    0    0    0    0    0    0    0    0    0    0
##           427       0    0    0    0    0    0    0    0    0    0    0
##           428       0    0    0    0    0    0    0    0    0    0    0
##           429       0    0    0    0    0    0    0    0    0    0    0
##           430       0    0    0    0    0    0    0    0    0    0    0
##           431       0    0    0    0    0    0    0    0    0    0    0
##           432       0    0    0    0    0    0    0    0    0    0    0
##           434       0    0    0    0    0    0    0    0    0    0    0
##           435       0    0    0    0    0    0    0    0    0    0    0
##           436       0    0    0    0    0    0    0    0    0    0    0
##           437       0    0    0    0    0    0    0    0    0    0    0
##           438       0    0    0    0    0    0    0    0    0    0    0
##           440       0    0    0    0    0    0    0    0    0    0    0
##           441       0    0    0    0    0    0    0    0    0    0    0
##           444       0    0    0    0    0    0    0    0    0    0    0
##           445       0    0    0    0    0    0    0    0    0    0    0
##           446       0    0    0    0    0    0    0    0    0    0    0
##           447       0    0    0    0    0    0    0    0    0    0    0
##           448       0    0    0    0    0    0    0    0    0    0    0
##           449       0    0    0    0    0    0    0    0    0    0    0
##           450       0    0    0    0    0    0    0    0    0    0    0
##           451       0    0    0    0    0    0    0    0    0    0    0
##           452       0    0    0    0    0    0    0    0    0    0    0
##           454       0    0    0    0    0    0    0    0    0    0    0
##           455       0    0    0    0    0    0    0    0    0    0    0
##           456       0    0    0    0    0    0    0    0    0    0    0
##           458       0    0    0    0    0    0    0    0    0    0    0
##           459       0    0    0    0    0    0    0    0    0    0    0
##           460       0    0    0    0    0    0    0    0    0    0    0
##           461       0    0    0    0    0    0    0    0    0    0    0
##           462       0    0    0    0    0    0    0    0    0    0    0
##           463       0    0    0    0    0    0    0    0    0    0    0
##           464       0    0    0    0    0    0    0    0    0    0    0
##           465       0    0    0    0    0    0    0    0    0    0    0
##           466       0    0    0    0    0    0    0    0    0    0    0
##           467       0    0    0    0    0    0    0    0    0    0    0
##           468       0    0    0    0    0    0    0    0    0    0    0
##           469       0    0    0    0    0    0    0    0    0    0    0
##           471       0    0    0    0    0    0    0    0    0    0    0
##           472       0    0    0    0    0    0    0    0    0    0    0
##           473       0    0    0    0    0    0    0    0    0    0    0
##           474       0    0    0    0    0    0    0    0    0    0    0
##           475       0    0    0    0    0    0    0    0    0    0    0
##           476       0    0    0    0    0    0    0    0    0    0    0
##           477       0    0    0    0    0    0    0    0    0    0    0
##           478       0    0    0    0    0    0    0    0    0    0    0
##           480       0    0    0    0    0    0    0    0    0    0    0
##           482       0    0    0    0    0    0    0    0    0    0    0
##           483       0    0    0    0    0    0    0    0    0    0    0
##           484       0    0    0    0    0    0    0    0    0    0    0
##           485       0    0    0    0    0    0    0    0    0    0    0
##           486       0    0    0    0    0    0    0    0    0    0    0
##           488       0    0    0    0    0    0    0    0    0    0    0
##           489       0    0    0    0    0    0    0    0    0    0    0
##           490       0    0    0    0    0    0    0    0    0    0    0
##           492       0    0    0    0    0    0    0    0    0    0    0
##           493       0    0    0    0    0    0    0    0    0    0    0
##           494       0    0    0    0    0    0    0    0    0    0    0
##           495       0    0    0    0    0    0    0    0    0    0    0
##           496       0    0    0    0    0    0    0    0    0    0    0
##           497       0    0    0    0    0    0    0    0    0    0    0
##           498       0    0    0    0    0    0    0    0    0    0    0
##           500       0    0    0    0    0    0    0    0    0    0    0
##           501       0    0    0    0    0    0    0    0    0    0    0
##           502       0    0    0    0    0    0    0    0    0    0    0
##           503       0    0    0    0    0    0    0    0    0    0    0
##           504       0    0    0    0    0    0    0    0    0    0    0
##           505       0    0    0    0    0    0    0    0    0    0    0
##           506       0    0    0    0    0    0    0    0    0    0    0
##           507       0    0    0    0    0    0    0    0    0    0    0
##           508       0    0    0    0    0    0    0    0    0    0    0
##           510       0    0    0    0    0    0    0    0    0    0    0
##           511       0    0    0    0    0    0    0    0    0    0    0
##           512       0    0    0    0    0    0    0    0    0    0    0
##           513       0    0    0    0    0    0    0    0    0    0    0
##           514       0    0    0    0    0    0    0    0    0    0    0
##           515       0    0    0    0    0    0    0    0    0    0    0
##           516       0    0    0    0    0    0    0    0    0    0    0
##           517       0    0    0    0    0    0    0    0    0    0    0
##           518       0    0    0    0    0    0    0    0    0    0    0
##           519       0    0    0    0    0    0    0    0    0    0    0
##           520       0    0    0    0    0    0    0    0    0    0    0
##           521       0    0    0    0    0    0    0    0    0    0    0
##           522       0    0    0    0    0    0    0    0    0    0    0
##           523       0    0    0    0    0    0    0    0    0    0    0
##           525       0    0    0    0    0    0    0    0    0    0    0
##           526       0    0    0    0    0    0    0    0    0    0    0
##           527       0    0    0    0    0    0    0    0    0    0    0
##           528       0    0    0    0    0    0    0    0    0    0    0
##           529       0    0    0    0    0    0    0    0    0    0    0
##           530       0    0    0    0    0    0    0    0    0    0    0
##           531       0    0    0    0    0    0    0    0    0    0    0
##           532       0    0    0    0    0    0    0    0    0    0    0
##           533       0    0    0    0    0    0    0    0    0    0    0
##           534       0    0    0    0    0    0    0    0    0    0    0
##           535       0    0    0    0    0    0    0    0    0    0    0
##           536       0    0    0    0    0    0    0    0    0    0    0
##           537       0    0    0    0    0    0    0    0    0    0    0
##           538       0    0    0    0    0    0    0    0    0    0    0
##           539       0    0    0    0    0    0    0    0    0    0    0
##           541       0    0    0    0    0    0    0    0    0    0    0
##           542       0    0    0    0    0    0    0    0    0    0    0
##           544       0    0    0    0    0    0    0    0    0    0    0
##           545       0    0    0    0    0    0    0    0    0    0    0
##           546       0    0    0    0    0    0    0    0    0    0    0
##           547       0    0    0    0    0    0    0    0    0    0    0
##           548       0    0    0    0    0    0    0    0    0    0    0
##           549       0    0    0    0    0    0    0    0    0    0    0
##           550       0    0    0    0    0    0    0    0    0    0    0
##           552       0    0    0    0    0    0    0    0    0    0    0
##           553       0    0    0    0    0    0    0    0    0    0    0
##           555       0    0    0    0    0    0    0    0    0    0    0
##           556       0    0    0    0    0    0    0    0    0    0    0
##           557       0    0    0    0    0    0    0    0    0    0    0
##           558       0    0    0    0    0    0    0    0    0    0    0
##           559       0    0    0    0    0    0    0    0    0    0    0
##           560       0    0    0    0    0    0    0    0    0    0    0
##                 
## filteredTestPred 4400 4500 4600 4700 4800 4900 5000 5100 5200 5300 5400
##           4         0    0    0    0    0    0    0    0    0    0    0
##           23        0    0    0    0    0    0    0    0    0    0    0
##           41        0    0    0    0    0    0    0    0    0    0    0
##           45        0    0    0    0    0    0    0    0    0    0    0
##           47        0    0    0    0    0    0    0    0    0    0    0
##           48        0    0    0    0    0    0    0    0    0    0    0
##           51        0    0    0    0    0    0    0    0    0    0    0
##           60        0    0    0    0    0    0    0    0    0    0    0
##           64        0    0    0    0    0    0    0    0    0    0    0
##           66        0    0    0    0    0    0    0    0    0    0    0
##           70        0    0    0    0    0    0    0    0    0    0    0
##           80        0    0    0    0    0    0    0    0    0    0    0
##           82        0    0    0    0    0    0    0    0    0    0    0
##           84        0    0    0    0    0    0    0    0    0    0    0
##           86        0    0    0    0    0    0    0    0    0    0    0
##           87        0    0    0    0    0    0    0    0    0    0    0
##           88        0    0    0    0    0    0    0    0    0    0    0
##           90        0    0    0    0    0    0    0    0    0    0    0
##           91        0    0    0    0    0    0    0    0    0    0    0
##           95        0    0    0    0    0    0    0    0    0    0    0
##           97        0    0    0    0    0    0    0    0    0    0    0
##           98        0    0    0    0    0    0    0    0    0    0    0
##           99        0    0    0    0    0    0    0    0    0    0    0
##           102       0    0    0    0    0    0    0    0    0    0    0
##           106       0    0    0    0    0    0    0    0    0    0    0
##           109       0    0    0    0    0    0    0    0    0    0    0
##           111       0    0    0    0    0    0    0    0    0    0    0
##           116       0    0    0    0    0    0    0    0    0    0    0
##           119       0    0    0    0    0    0    0    0    0    0    0
##           123       0    0    0    0    0    0    0    0    0    0    0
##           127       0    0    0    0    0    0    0    0    0    0    0
##           129       0    0    0    0    0    0    0    0    0    0    0
##           130       0    0    0    0    0    0    0    0    0    0    0
##           134       0    0    0    0    0    0    0    0    0    0    0
##           135       0    0    0    0    0    0    0    0    0    0    0
##           137       0    0    0    0    0    0    0    0    0    0    0
##           138       0    0    0    0    0    0    0    0    0    0    0
##           140       0    0    0    0    0    0    0    0    0    0    0
##           141       0    0    0    0    0    0    0    0    0    0    0
##           143       0    0    0    0    0    0    0    0    0    0    0
##           144       0    0    0    0    0    0    0    0    0    0    0
##           146       0    0    0    0    0    0    0    0    0    0    0
##           149       0    0    0    0    0    0    0    0    0    0    0
##           150       0    0    0    0    0    0    0    0    0    0    0
##           151       0    0    0    0    0    0    0    0    0    0    0
##           154       0    0    0    0    0    0    0    0    0    0    0
##           158       0    0    0    0    0    0    0    0    0    0    0
##           160       0    0    0    0    0    0    0    0    0    0    0
##           162       0    0    0    0    0    0    0    0    0    0    0
##           163       0    0    0    0    0    0    0    0    0    0    0
##           168       0    0    0    0    0    0    0    0    0    0    0
##           176       0    0    0    0    0    0    0    0    0    0    0
##           178       0    0    0    0    0    0    0    0    0    0    0
##           180       0    0    0    0    0    0    0    0    0    0    0
##           181       0    0    0    0    0    0    0    0    0    0    0
##           183       0    0    0    0    0    0    0    0    0    0    0
##           186       0    0    0    0    0    0    0    0    0    0    0
##           190       0    0    0    0    0    0    0    0    0    0    0
##           191       0    0    0    0    0    0    0    0    0    0    0
##           192       0    0    0    0    0    0    0    0    0    0    0
##           196       0    0    0    0    0    0    0    0    0    0    0
##           201       0    0    0    0    0    0    0    0    0    0    0
##           202       0    0    0    0    0    0    0    0    0    0    0
##           205       0    0    0    0    0    0    0    0    0    0    0
##           206       0    0    0    0    0    0    0    0    0    0    0
##           211       0    0    0    0    0    0    0    0    0    0    0
##           213       0    0    0    0    0    0    0    0    0    0    0
##           215       0    0    0    0    0    0    0    0    0    0    0
##           217       0    0    0    0    0    0    0    0    0    0    0
##           218       0    0    0    0    0    0    0    0    0    0    0
##           221       0    0    0    0    0    0    0    0    0    0    0
##           223       0    0    0    0    0    0    0    0    0    0    0
##           224       0    0    0    0    0    0    0    0    0    0    0
##           226       0    0    0    0    0    0    0    0    0    0    0
##           228       0    0    0    0    0    0    0    0    0    0    0
##           233       0    0    0    0    0    0    0    0    0    0    0
##           236       0    0    0    0    0    0    0    0    0    0    0
##           237       0    0    0    0    0    0    0    0    0    0    0
##           238       0    0    0    0    0    0    0    0    0    0    0
##           240       0    0    0    0    0    0    0    0    0    0    0
##           241       0    0    0    0    0    0    0    0    0    0    0
##           245       0    0    0    0    0    0    0    0    0    0    0
##           246       0    0    0    0    0    0    0    0    0    0    0
##           248       0    0    0    0    0    0    0    0    0    0    0
##           250       0    0    0    0    0    0    0    0    0    0    0
##           251       0    0    0    0    0    0    0    0    0    0    0
##           256       0    0    0    0    0    0    0    0    0    0    0
##           258       0    0    0    0    0    0    0    0    0    0    0
##           261       0    0    0    0    0    0    0    0    0    0    0
##           262       0    0    0    0    0    0    0    0    0    0    0
##           264       0    0    0    0    0    0    0    0    0    0    0
##           266       0    0    0    0    0    0    0    0    0    0    0
##           268       0    0    0    0    0    0    0    0    0    0    0
##           269       0    0    0    0    0    0    0    0    0    0    0
##           277       0    0    0    0    0    0    0    0    0    0    0
##           278       0    0    0    0    0    0    0    0    0    0    0
##           279       0    0    0    0    0    0    0    0    0    0    0
##           280       0    0    0    0    0    0    0    0    0    0    0
##           285       0    0    0    0    0    0    0    0    0    0    0
##           286       0    0    0    0    0    0    0    0    0    0    0
##           287       0    0    0    0    0    0    0    0    0    0    0
##           292       0    0    0    0    0    0    0    0    0    0    0
##           294       0    0    0    0    0    0    0    0    0    0    0
##           295       0    0    0    0    0    0    0    0    0    0    0
##           296       0    0    0    0    0    0    0    0    0    0    0
##           300       0    0    0    0    0    0    0    0    0    0    0
##           301       0    0    0    0    0    0    0    0    0    0    0
##           302       0    0    0    0    0    0    0    0    0    0    0
##           305       0    0    0    0    0    0    0    0    0    0    0
##           308       0    0    0    0    0    0    0    0    0    0    0
##           309       0    0    0    0    0    0    0    0    0    0    0
##           313       0    0    0    0    0    0    0    0    0    0    0
##           317       0    0    0    0    0    0    0    0    0    0    0
##           318       0    0    0    0    0    0    0    0    0    0    0
##           321       0    0    0    0    0    0    0    0    0    0    0
##           322       0    0    0    0    0    0    0    0    0    0    0
##           324       0    0    0    0    0    0    0    0    0    0    0
##           325       0    0    0    0    0    0    0    0    0    0    0
##           326       0    0    0    0    0    0    0    0    0    0    0
##           331       0    0    0    0    0    0    0    0    0    0    0
##           336       0    0    0    0    0    0    0    0    0    0    0
##           339       0    0    0    0    0    0    0    0    0    0    0
##           340       0    0    0    0    0    0    0    0    0    0    0
##           341       0    0    0    0    0    0    0    0    0    0    0
##           342       0    0    0    0    0    0    0    0    0    0    0
##           343       0    0    0    0    0    0    0    0    0    0    0
##           346       0    0    0    0    0    0    0    0    0    0    0
##           348       0    0    0    0    0    0    0    0    0    0    0
##           349       0    0    0    0    0    0    0    0    0    0    0
##           350       0    0    0    0    0    0    0    0    0    0    0
##           354       0    0    0    0    0    0    0    0    0    0    0
##           356       0    0    0    0    0    0    0    0    0    0    0
##           357       0    0    0    0    0    0    0    0    0    0    0
##           358       0    0    0    0    0    0    0    0    0    0    0
##           365       0    0    0    0    0    0    0    0    0    0    0
##           366       0    0    0    0    0    0    0    0    0    0    0
##           368       0    0    0    0    0    0    0    0    0    0    0
##           369       0    0    0    0    0    0    0    0    0    0    0
##           371       0    0    0    0    0    0    0    0    0    0    0
##           373       0    0    0    0    0    0    0    0    0    0    0
##           375       0    0    0    0    0    0    0    0    0    0    0
##           377       0    0    0    0    0    0    0    0    0    0    0
##           378       0    0    0    0    0    0    0    0    0    0    0
##           379       0    0    0    0    0    0    0    0    0    0    0
##           380       0    0    0    0    0    0    0    0    0    0    0
##           381       0    0    0    0    0    0    0    0    0    0    0
##           382       0    0    0    0    0    0    0    0    0    0    0
##           383       0    0    0    0    0    0    0    0    0    0    0
##           384       0    0    0    0    0    0    0    0    0    0    0
##           386       0    0    0    0    0    0    0    0    0    0    0
##           387       0    0    0    0    0    0    0    0    0    0    0
##           390       0    0    0    0    0    0    0    0    0    0    0
##           391       0    0    0    0    0    0    0    0    0    0    0
##           392       0    0    0    0    0    0    0    0    0    0    0
##           393       0    0    0    0    0    0    0    0    0    0    0
##           395       0    0    0    0    0    0    0    0    0    0    0
##           396       0    0    0    0    0    0    0    0    0    0    0
##           397       0    0    0    0    0    0    0    0    0    0    0
##           398       0    0    0    0    0    0    0    0    0    0    0
##           399       0    0    0    0    0    0    0    0    0    0    0
##           400       0    0    0    0    0    0    0    0    0    0    0
##           401       0    0    0    0    0    0    0    0    0    0    0
##           402       0    0    0    0    0    0    0    0    0    0    0
##           403       0    0    0    0    0    0    0    0    0    0    0
##           404       0    0    0    0    0    0    0    0    0    0    0
##           407       0    0    0    0    0    0    0    0    0    0    0
##           408       0    0    0    0    0    0    0    0    0    0    0
##           410       0    0    0    0    0    0    0    0    0    0    0
##           411       0    0    0    0    0    0    0    0    0    0    0
##           412       0    0    0    0    0    0    0    0    0    0    0
##           413       0    0    0    0    0    0    0    0    0    0    0
##           414       0    0    0    0    0    0    0    0    0    0    0
##           416       0    0    0    0    0    0    0    0    0    0    0
##           417       0    0    0    0    0    0    0    0    0    0    0
##           419       0    0    0    0    0    0    0    0    0    0    0
##           420       0    0    0    0    0    0    0    0    0    0    0
##           421       0    0    0    0    0    0    0    0    0    0    0
##           422       0    0    0    0    0    0    0    0    0    0    0
##           423       0    0    0    0    0    0    0    0    0    0    0
##           424       0    0    0    0    0    0    0    0    0    0    0
##           425       0    0    0    0    0    0    0    0    0    0    0
##           426       0    0    0    0    0    0    0    0    0    0    0
##           427       0    0    0    0    0    0    0    0    0    0    0
##           428       0    0    0    0    0    0    0    0    0    0    0
##           429       0    0    0    0    0    0    0    0    0    0    0
##           430       0    0    0    0    0    0    0    0    0    0    0
##           431       0    0    0    0    0    0    0    0    0    0    0
##           432       0    0    0    0    0    0    0    0    0    0    0
##           434       0    0    0    0    0    0    0    0    0    0    0
##           435       0    0    0    0    0    0    0    0    0    0    0
##           436       0    0    0    0    0    0    0    0    0    0    0
##           437       0    0    0    0    0    0    0    0    0    0    0
##           438       0    0    0    0    0    0    0    0    0    0    0
##           440       0    0    0    0    0    0    0    0    0    0    0
##           441       0    0    0    0    0    0    0    0    0    0    0
##           444       0    0    0    0    0    0    0    0    0    0    0
##           445       0    0    0    0    0    0    0    0    0    0    0
##           446       0    0    0    0    0    0    0    0    0    0    0
##           447       0    0    0    0    0    0    0    0    0    0    0
##           448       0    0    0    0    0    0    0    0    0    0    0
##           449       0    0    0    0    0    0    0    0    0    0    0
##           450       0    0    0    0    0    0    0    0    0    0    0
##           451       0    0    0    0    0    0    0    0    0    0    0
##           452       0    0    0    0    0    0    0    0    0    0    0
##           454       0    0    0    0    0    0    0    0    0    0    0
##           455       0    0    0    0    0    0    0    0    0    0    0
##           456       0    0    0    0    0    0    0    0    0    0    0
##           458       0    0    0    0    0    0    0    0    0    0    0
##           459       0    0    0    0    0    0    0    0    0    0    0
##           460       0    0    0    0    0    0    0    0    0    0    0
##           461       0    0    0    0    0    0    0    0    0    0    0
##           462       0    0    0    0    0    0    0    0    0    0    0
##           463       0    0    0    0    0    0    0    0    0    0    0
##           464       0    0    0    0    0    0    0    0    0    0    0
##           465       0    0    0    0    0    0    0    0    0    0    0
##           466       0    0    0    0    0    0    0    0    0    0    0
##           467       0    0    0    0    0    0    0    0    0    0    0
##           468       0    0    0    0    0    0    0    0    0    0    0
##           469       0    0    0    0    0    0    0    0    0    0    0
##           471       0    0    0    0    0    0    0    0    0    0    0
##           472       0    0    0    0    0    0    0    0    0    0    0
##           473       0    0    0    0    0    0    0    0    0    0    0
##           474       0    0    0    0    0    0    0    0    0    0    0
##           475       0    0    0    0    0    0    0    0    0    0    0
##           476       0    0    0    0    0    0    0    0    0    0    0
##           477       0    0    0    0    0    0    0    0    0    0    0
##           478       0    0    0    0    0    0    0    0    0    0    0
##           480       0    0    0    0    0    0    0    0    0    0    0
##           482       0    0    0    0    0    0    0    0    0    0    0
##           483       0    0    0    0    0    0    0    0    0    0    0
##           484       0    0    0    0    0    0    0    0    0    0    0
##           485       0    0    0    0    0    0    0    0    0    0    0
##           486       0    0    0    0    0    0    0    0    0    0    0
##           488       0    0    0    0    0    0    0    0    0    0    0
##           489       0    0    0    0    0    0    0    0    0    0    0
##           490       0    0    0    0    0    0    0    0    0    0    0
##           492       0    0    0    0    0    0    0    0    0    0    0
##           493       0    0    0    0    0    0    0    0    0    0    0
##           494       0    0    0    0    0    0    0    0    0    0    0
##           495       0    0    0    0    0    0    0    0    0    0    0
##           496       0    0    0    0    0    0    0    0    0    0    0
##           497       0    0    0    0    0    0    0    0    0    0    0
##           498       0    0    0    0    0    0    0    0    0    0    0
##           500       0    0    0    0    0    0    0    0    0    0    0
##           501       0    0    0    0    0    0    0    0    0    0    0
##           502       0    0    0    0    0    0    0    0    0    0    0
##           503       0    0    0    0    0    0    0    0    0    0    0
##           504       0    0    0    0    0    0    0    0    0    0    0
##           505       0    0    0    0    0    0    0    0    0    0    0
##           506       0    0    0    0    0    0    0    0    0    0    0
##           507       0    0    0    0    0    0    0    0    0    0    0
##           508       0    0    0    0    0    0    0    0    0    0    0
##           510       0    0    0    0    0    0    0    0    0    0    0
##           511       0    0    0    0    0    0    0    0    0    0    0
##           512       0    0    0    0    0    0    0    0    0    0    0
##           513       0    0    0    0    0    0    0    0    0    0    0
##           514       0    0    0    0    0    0    0    0    0    0    0
##           515       0    0    0    0    0    0    0    0    0    0    0
##           516       0    0    0    0    0    0    0    0    0    0    0
##           517       0    0    0    0    0    0    0    0    0    0    0
##           518       0    0    0    0    0    0    0    0    0    0    0
##           519       0    0    0    0    0    0    0    0    0    0    0
##           520       0    0    0    0    0    0    0    0    0    0    0
##           521       0    0    0    0    0    0    0    0    0    0    0
##           522       0    0    0    0    0    0    0    0    0    0    0
##           523       0    0    0    0    0    0    0    0    0    0    0
##           525       0    0    0    0    0    0    0    0    0    0    0
##           526       0    0    0    0    0    0    0    0    0    0    0
##           527       0    0    0    0    0    0    0    0    0    0    0
##           528       0    0    0    0    0    0    0    0    0    0    0
##           529       0    0    0    0    0    0    0    0    0    0    0
##           530       0    0    0    0    0    0    0    0    0    0    0
##           531       0    0    0    0    0    0    0    0    0    0    0
##           532       0    0    0    0    0    0    0    0    0    0    0
##           533       0    0    0    0    0    0    0    0    0    0    0
##           534       0    0    0    0    0    0    0    0    0    0    0
##           535       0    0    0    0    0    0    0    0    0    0    0
##           536       0    0    0    0    0    0    0    0    0    0    0
##           537       0    0    0    0    0    0    0    0    0    0    0
##           538       0    0    0    0    0    0    0    0    0    0    0
##           539       0    0    0    0    0    0    0    0    0    0    0
##           541       0    0    0    0    0    0    0    0    0    0    0
##           542       0    0    0    0    0    0    0    0    0    0    0
##           544       0    0    0    0    0    0    0    0    0    0    0
##           545       0    0    0    0    0    0    0    0    0    0    0
##           546       0    0    0    0    0    0    0    0    0    0    0
##           547       0    0    0    0    0    0    0    0    0    0    0
##           548       0    0    0    0    0    0    0    0    0    0    0
##           549       0    0    0    0    0    0    0    0    0    0    0
##           550       0    0    0    0    0    0    0    0    0    0    0
##           552       0    0    0    0    0    0    0    0    0    0    0
##           553       0    0    0    0    0    0    0    0    0    0    0
##           555       0    0    0    0    0    0    0    0    0    0    0
##           556       0    0    0    0    0    0    0    0    0    0    0
##           557       0    0    0    0    0    0    0    0    0    0    0
##           558       0    0    0    0    0    0    0    0    0    0    0
##           559       0    0    0    0    0    0    0    0    0    0    0
##           560       0    0    0    0    0    0    0    0    0    0    0
##                 
## filteredTestPred 5500 5600 5700 5800 5900 6000 6100 6200 6300 6400 6500
##           4         0    0    0    0    0    0    0    0    0    0    0
##           23        0    0    0    0    0    0    0    0    0    0    0
##           41        0    0    0    0    0    0    0    0    0    0    0
##           45        0    0    0    0    0    0    0    0    0    0    0
##           47        0    0    0    0    0    0    0    0    0    0    0
##           48        0    0    0    0    0    0    0    0    0    0    0
##           51        0    0    0    0    0    0    0    0    0    0    0
##           60        0    0    0    0    0    0    0    0    0    0    0
##           64        0    0    0    0    0    0    0    0    0    0    0
##           66        0    0    0    0    0    0    0    0    0    0    0
##           70        0    0    0    0    0    0    0    0    0    0    0
##           80        0    0    0    0    0    0    0    0    0    0    0
##           82        0    0    0    0    0    0    0    0    0    0    0
##           84        0    0    0    0    0    0    0    0    0    0    0
##           86        0    0    0    0    0    0    0    0    0    0    0
##           87        0    0    0    0    0    0    0    0    0    0    0
##           88        0    0    0    0    0    0    0    0    0    0    0
##           90        0    0    0    0    0    0    0    0    0    0    0
##           91        0    0    0    0    0    0    0    0    0    0    0
##           95        0    0    0    0    0    0    0    0    0    0    0
##           97        0    0    0    0    0    0    0    0    0    0    0
##           98        0    0    0    0    0    0    0    0    0    0    0
##           99        0    0    0    0    0    0    0    0    0    0    0
##           102       0    0    0    0    0    0    0    0    0    0    0
##           106       0    0    0    0    0    0    0    0    0    0    0
##           109       0    0    0    0    0    0    0    0    0    0    0
##           111       0    0    0    0    0    0    0    0    0    0    0
##           116       0    0    0    0    0    0    0    0    0    0    0
##           119       0    0    0    0    0    0    0    0    0    0    0
##           123       0    0    0    0    0    0    0    0    0    0    0
##           127       0    0    0    0    0    0    0    0    0    0    0
##           129       0    0    0    0    0    0    0    0    0    0    0
##           130       0    0    0    0    0    0    0    0    0    0    0
##           134       0    0    0    0    0    0    0    0    0    0    0
##           135       0    0    0    0    0    0    0    0    0    0    0
##           137       0    0    0    0    0    0    0    0    0    0    0
##           138       0    0    0    0    0    0    0    0    0    0    0
##           140       0    0    0    0    0    0    0    0    0    0    0
##           141       0    0    0    0    0    0    0    0    0    0    0
##           143       0    0    0    0    0    0    0    0    0    0    0
##           144       0    0    0    0    0    0    0    0    0    0    0
##           146       0    0    0    0    0    0    0    0    0    0    0
##           149       0    0    0    0    0    0    0    0    0    0    0
##           150       0    0    0    0    0    0    0    0    0    0    0
##           151       0    0    0    0    0    0    0    0    0    0    0
##           154       0    0    0    0    0    0    0    0    0    0    0
##           158       0    0    0    0    0    0    0    0    0    0    0
##           160       0    0    0    0    0    0    0    0    0    0    0
##           162       0    0    0    0    0    0    0    0    0    0    0
##           163       0    0    0    0    0    0    0    0    0    0    0
##           168       0    0    0    0    0    0    0    0    0    0    0
##           176       0    0    0    0    0    0    0    0    0    0    0
##           178       0    0    0    0    0    0    0    0    0    0    0
##           180       0    0    0    0    0    0    0    0    0    0    0
##           181       0    0    0    0    0    0    0    0    0    0    0
##           183       0    0    0    0    0    0    0    0    0    0    0
##           186       0    0    0    0    0    0    0    0    0    0    0
##           190       0    0    0    0    0    0    0    0    0    0    0
##           191       0    0    0    0    0    0    0    0    0    0    0
##           192       0    0    0    0    0    0    0    0    0    0    0
##           196       0    0    0    0    0    0    0    0    0    0    0
##           201       0    0    0    0    0    0    0    0    0    0    0
##           202       0    0    0    0    0    0    0    0    0    0    0
##           205       0    0    0    0    0    0    0    0    0    0    0
##           206       0    0    0    0    0    0    0    0    0    0    0
##           211       0    0    0    0    0    0    0    0    0    0    0
##           213       0    0    0    0    0    0    0    0    0    0    0
##           215       0    0    0    0    0    0    0    0    0    0    0
##           217       0    0    0    0    0    0    0    0    0    0    0
##           218       0    0    0    0    0    0    0    0    0    0    0
##           221       0    0    0    0    0    0    0    0    0    0    0
##           223       0    0    0    0    0    0    0    0    0    0    0
##           224       0    0    0    0    0    0    0    0    0    0    0
##           226       0    0    0    0    0    0    0    0    0    0    0
##           228       0    0    0    0    0    0    0    0    0    0    0
##           233       0    0    0    0    0    0    0    0    0    0    0
##           236       0    0    0    0    0    0    0    0    0    0    0
##           237       0    0    0    0    0    0    0    0    0    0    0
##           238       0    0    0    0    0    0    0    0    0    0    0
##           240       0    0    0    0    0    0    0    0    0    0    0
##           241       0    0    0    0    0    0    0    0    0    0    0
##           245       0    0    0    0    0    0    0    0    0    0    0
##           246       0    0    0    0    0    0    0    0    0    0    0
##           248       0    0    0    0    0    0    0    0    0    0    0
##           250       0    0    0    0    0    0    0    0    0    0    0
##           251       0    0    0    0    0    0    0    0    0    0    0
##           256       0    0    0    0    0    0    0    0    0    0    0
##           258       0    0    0    0    0    0    0    0    0    0    0
##           261       0    0    0    0    0    0    0    0    0    0    0
##           262       0    0    0    0    0    0    0    0    0    0    0
##           264       0    0    0    0    0    0    0    0    0    0    0
##           266       0    0    0    0    0    0    0    0    0    0    0
##           268       0    0    0    0    0    0    0    0    0    0    0
##           269       0    0    0    0    0    0    0    0    0    0    0
##           277       0    0    0    0    0    0    0    0    0    0    0
##           278       0    0    0    0    0    0    0    0    0    0    0
##           279       0    0    0    0    0    0    0    0    0    0    0
##           280       0    0    0    0    0    0    0    0    0    0    0
##           285       0    0    0    0    0    0    0    0    0    0    0
##           286       0    0    0    0    0    0    0    0    0    0    0
##           287       0    0    0    0    0    0    0    0    0    0    0
##           292       0    0    0    0    0    0    0    0    0    0    0
##           294       0    0    0    0    0    0    0    0    0    0    0
##           295       0    0    0    0    0    0    0    0    0    0    0
##           296       0    0    0    0    0    0    0    0    0    0    0
##           300       0    0    0    0    0    0    0    0    0    0    0
##           301       0    0    0    0    0    0    0    0    0    0    0
##           302       0    0    0    0    0    0    0    0    0    0    0
##           305       0    0    0    0    0    0    0    0    0    0    0
##           308       0    0    0    0    0    0    0    0    0    0    0
##           309       0    0    0    0    0    0    0    0    0    0    0
##           313       0    0    0    0    0    0    0    0    0    0    0
##           317       0    0    0    0    0    0    0    0    0    0    0
##           318       0    0    0    0    0    0    0    0    0    0    0
##           321       0    0    0    0    0    0    0    0    0    0    0
##           322       0    0    0    0    0    0    0    0    0    0    0
##           324       0    0    0    0    0    0    0    0    0    0    0
##           325       0    0    0    0    0    0    0    0    0    0    0
##           326       0    0    0    0    0    0    0    0    0    0    0
##           331       0    0    0    0    0    0    0    0    0    0    0
##           336       0    0    0    0    0    0    0    0    0    0    0
##           339       0    0    0    0    0    0    0    0    0    0    0
##           340       0    0    0    0    0    0    0    0    0    0    0
##           341       0    0    0    0    0    0    0    0    0    0    0
##           342       0    0    0    0    0    0    0    0    0    0    0
##           343       0    0    0    0    0    0    0    0    0    0    0
##           346       0    0    0    0    0    0    0    0    0    0    0
##           348       0    0    0    0    0    0    0    0    0    0    0
##           349       0    0    0    0    0    0    0    0    0    0    0
##           350       0    0    0    0    0    0    0    0    0    0    0
##           354       0    0    0    0    0    0    0    0    0    0    0
##           356       0    0    0    0    0    0    0    0    0    0    0
##           357       0    0    0    0    0    0    0    0    0    0    0
##           358       0    0    0    0    0    0    0    0    0    0    0
##           365       0    0    0    0    0    0    0    0    0    0    0
##           366       0    0    0    0    0    0    0    0    0    0    0
##           368       0    0    0    0    0    0    0    0    0    0    0
##           369       0    0    0    0    0    0    0    0    0    0    0
##           371       0    0    0    0    0    0    0    0    0    0    0
##           373       0    0    0    0    0    0    0    0    0    0    0
##           375       0    0    0    0    0    0    0    0    0    0    0
##           377       0    0    0    0    0    0    0    0    0    0    0
##           378       0    0    0    0    0    0    0    0    0    0    0
##           379       0    0    0    0    0    0    0    0    0    0    0
##           380       0    0    0    0    0    0    0    0    0    0    0
##           381       0    0    0    0    0    0    0    0    0    0    0
##           382       0    0    0    0    0    0    0    0    0    0    0
##           383       0    0    0    0    0    0    0    0    0    0    0
##           384       0    0    0    0    0    0    0    0    0    0    0
##           386       0    0    0    0    0    0    0    0    0    0    0
##           387       0    0    0    0    0    0    0    0    0    0    0
##           390       0    0    0    0    0    0    0    0    0    0    0
##           391       0    0    0    0    0    0    0    0    0    0    0
##           392       0    0    0    0    0    0    0    0    0    0    0
##           393       0    0    0    0    0    0    0    0    0    0    0
##           395       0    0    0    0    0    0    0    0    0    0    0
##           396       0    0    0    0    0    0    0    0    0    0    0
##           397       0    0    0    0    0    0    0    0    0    0    0
##           398       0    0    0    0    0    0    0    0    0    0    0
##           399       0    0    0    0    0    0    0    0    0    0    0
##           400       0    0    0    0    0    0    0    0    0    0    0
##           401       0    0    0    0    0    0    0    0    0    0    0
##           402       0    0    0    0    0    0    0    0    0    0    0
##           403       0    0    0    0    0    0    0    0    0    0    0
##           404       0    0    0    0    0    0    0    0    0    0    0
##           407       0    0    0    0    0    0    0    0    0    0    0
##           408       0    0    0    0    0    0    0    0    0    0    0
##           410       0    0    0    0    0    0    0    0    0    0    0
##           411       0    0    0    0    0    0    0    0    0    0    0
##           412       0    0    0    0    0    0    0    0    0    0    0
##           413       0    0    0    0    0    0    0    0    0    0    0
##           414       0    0    0    0    0    0    0    0    0    0    0
##           416       0    0    0    0    0    0    0    0    0    0    0
##           417       0    0    0    0    0    0    0    0    0    0    0
##           419       0    0    0    0    0    0    0    0    0    0    0
##           420       0    0    0    0    0    0    0    0    0    0    0
##           421       0    0    0    0    0    0    0    0    0    0    0
##           422       0    0    0    0    0    0    0    0    0    0    0
##           423       0    0    0    0    0    0    0    0    0    0    0
##           424       0    0    0    0    0    0    0    0    0    0    0
##           425       0    0    0    0    0    0    0    0    0    0    0
##           426       0    0    0    0    0    0    0    0    0    0    0
##           427       0    0    0    0    0    0    0    0    0    0    0
##           428       0    0    0    0    0    0    0    0    0    0    0
##           429       0    0    0    0    0    0    0    0    0    0    0
##           430       0    0    0    0    0    0    0    0    0    0    0
##           431       0    0    0    0    0    0    0    0    0    0    0
##           432       0    0    0    0    0    0    0    0    0    0    0
##           434       0    0    0    0    0    0    0    0    0    0    0
##           435       0    0    0    0    0    0    0    0    0    0    0
##           436       0    0    0    0    0    0    0    0    0    0    0
##           437       0    0    0    0    0    0    0    0    0    0    0
##           438       0    0    0    0    0    0    0    0    0    0    0
##           440       0    0    0    0    0    0    0    0    0    0    0
##           441       0    0    0    0    0    0    0    0    0    0    0
##           444       0    0    0    0    0    0    0    0    0    0    0
##           445       0    0    0    0    0    0    0    0    0    0    0
##           446       0    0    0    0    0    0    0    0    0    0    0
##           447       0    0    0    0    0    0    0    0    0    0    0
##           448       0    0    0    0    0    0    0    0    0    0    0
##           449       0    0    0    0    0    0    0    0    0    0    0
##           450       0    0    0    0    0    0    0    0    0    0    0
##           451       0    0    0    0    0    0    0    0    0    0    0
##           452       0    0    0    0    0    0    0    0    0    0    0
##           454       0    0    0    0    0    0    0    0    0    0    0
##           455       0    0    0    0    0    0    0    0    0    0    0
##           456       0    0    0    0    0    0    0    0    0    0    0
##           458       0    0    0    0    0    0    0    0    0    0    0
##           459       0    0    0    0    0    0    0    0    0    0    0
##           460       0    0    0    0    0    0    0    0    0    0    0
##           461       0    0    0    0    0    0    0    0    0    0    0
##           462       0    0    0    0    0    0    0    0    0    0    0
##           463       0    0    0    0    0    0    0    0    0    0    0
##           464       0    0    0    0    0    0    0    0    0    0    0
##           465       0    0    0    0    0    0    0    0    0    0    0
##           466       0    0    0    0    0    0    0    0    0    0    0
##           467       0    0    0    0    0    0    0    0    0    0    0
##           468       0    0    0    0    0    0    0    0    0    0    0
##           469       0    0    0    0    0    0    0    0    0    0    0
##           471       0    0    0    0    0    0    0    0    0    0    0
##           472       0    0    0    0    0    0    0    0    0    0    0
##           473       0    0    0    0    0    0    0    0    0    0    0
##           474       0    0    0    0    0    0    0    0    0    0    0
##           475       0    0    0    0    0    0    0    0    0    0    0
##           476       0    0    0    0    0    0    0    0    0    0    0
##           477       0    0    0    0    0    0    0    0    0    0    0
##           478       0    0    0    0    0    0    0    0    0    0    0
##           480       0    0    0    0    0    0    0    0    0    0    0
##           482       0    0    0    0    0    0    0    0    0    0    0
##           483       0    0    0    0    0    0    0    0    0    0    0
##           484       0    0    0    0    0    0    0    0    0    0    0
##           485       0    0    0    0    0    0    0    0    0    0    0
##           486       0    0    0    0    0    0    0    0    0    0    0
##           488       0    0    0    0    0    0    0    0    0    0    0
##           489       0    0    0    0    0    0    0    0    0    0    0
##           490       0    0    0    0    0    0    0    0    0    0    0
##           492       0    0    0    0    0    0    0    0    0    0    0
##           493       0    0    0    0    0    0    0    0    0    0    0
##           494       0    0    0    0    0    0    0    0    0    0    0
##           495       0    0    0    0    0    0    0    0    0    0    0
##           496       0    0    0    0    0    0    0    0    0    0    0
##           497       0    0    0    0    0    0    0    0    0    0    0
##           498       0    0    0    0    0    0    0    0    0    0    0
##           500       0    0    0    0    0    0    0    0    0    0    0
##           501       0    0    0    0    0    0    0    0    0    0    0
##           502       0    0    0    0    0    0    0    0    0    0    0
##           503       0    0    0    0    0    0    0    0    0    0    0
##           504       0    0    0    0    0    0    0    0    0    0    0
##           505       0    0    0    0    0    0    0    0    0    0    0
##           506       0    0    0    0    0    0    0    0    0    0    0
##           507       0    0    0    0    0    0    0    0    0    0    0
##           508       0    0    0    0    0    0    0    0    0    0    0
##           510       0    0    0    0    0    0    0    0    0    0    0
##           511       0    0    0    0    0    0    0    0    0    0    0
##           512       0    0    0    0    0    0    0    0    0    0    0
##           513       0    0    0    0    0    0    0    0    0    0    0
##           514       0    0    0    0    0    0    0    0    0    0    0
##           515       0    0    0    0    0    0    0    0    0    0    0
##           516       0    0    0    0    0    0    0    0    0    0    0
##           517       0    0    0    0    0    0    0    0    0    0    0
##           518       0    0    0    0    0    0    0    0    0    0    0
##           519       0    0    0    0    0    0    0    0    0    0    0
##           520       0    0    0    0    0    0    0    0    0    0    0
##           521       0    0    0    0    0    0    0    0    0    0    0
##           522       0    0    0    0    0    0    0    0    0    0    0
##           523       0    0    0    0    0    0    0    0    0    0    0
##           525       0    0    0    0    0    0    0    0    0    0    0
##           526       0    0    0    0    0    0    0    0    0    0    0
##           527       0    0    0    0    0    0    0    0    0    0    0
##           528       0    0    0    0    0    0    0    0    0    0    0
##           529       0    0    0    0    0    0    0    0    0    0    0
##           530       0    0    0    0    0    0    0    0    0    0    0
##           531       0    0    0    0    0    0    0    0    0    0    0
##           532       0    0    0    0    0    0    0    0    0    0    0
##           533       0    0    0    0    0    0    0    0    0    0    0
##           534       0    0    0    0    0    0    0    0    0    0    0
##           535       0    0    0    0    0    0    0    0    0    0    0
##           536       0    0    0    0    0    0    0    0    0    0    0
##           537       0    0    0    0    0    0    0    0    0    0    0
##           538       0    0    0    0    0    0    0    0    0    0    0
##           539       0    0    0    0    0    0    0    0    0    0    0
##           541       0    0    0    0    0    0    0    0    0    0    0
##           542       0    0    0    0    0    0    0    0    0    0    0
##           544       0    0    0    0    0    0    0    0    0    0    0
##           545       0    0    0    0    0    0    0    0    0    0    0
##           546       0    0    0    0    0    0    0    0    0    0    0
##           547       0    0    0    0    0    0    0    0    0    0    0
##           548       0    0    0    0    0    0    0    0    0    0    0
##           549       0    0    0    0    0    0    0    0    0    0    0
##           550       0    0    0    0    0    0    0    0    0    0    0
##           552       0    0    0    0    0    0    0    0    0    0    0
##           553       0    0    0    0    0    0    0    0    0    0    0
##           555       0    0    0    0    0    0    0    0    0    0    0
##           556       0    0    0    0    0    0    0    0    0    0    0
##           557       0    0    0    0    0    0    0    0    0    0    0
##           558       0    0    0    0    0    0    0    0    0    0    0
##           559       0    0    0    0    0    0    0    0    0    0    0
##           560       0    0    0    0    0    0    0    0    0    0    0
##                 
## filteredTestPred 6700 6800 7000 7100 7200 7400 7500 7600 7700 7800 7900
##           4         0    0    0    0    0    0    0    0    0    0    0
##           23        0    0    0    0    0    0    0    0    0    0    0
##           41        0    0    0    0    0    0    0    0    0    0    0
##           45        0    0    0    0    0    0    0    0    0    0    0
##           47        0    0    0    0    0    0    0    0    0    0    0
##           48        0    0    0    0    0    0    0    0    0    0    0
##           51        0    0    0    0    0    0    0    0    0    0    0
##           60        0    0    0    0    0    0    0    0    0    0    0
##           64        0    0    0    0    0    0    0    0    0    0    0
##           66        0    0    0    0    0    0    0    0    0    0    0
##           70        0    0    0    0    0    0    0    0    0    0    0
##           80        0    0    0    0    0    0    0    0    0    0    0
##           82        0    0    0    0    0    0    0    0    0    0    0
##           84        0    0    0    0    0    0    0    0    0    0    0
##           86        0    0    0    0    0    0    0    0    0    0    0
##           87        0    0    0    0    0    0    0    0    0    0    0
##           88        0    0    0    0    0    0    0    0    0    0    0
##           90        0    0    0    0    0    0    0    0    0    0    0
##           91        0    0    0    0    0    0    0    0    0    0    0
##           95        0    0    0    0    0    0    0    0    0    0    0
##           97        0    0    0    0    0    0    0    0    0    0    0
##           98        0    0    0    0    0    0    0    0    0    0    0
##           99        0    0    0    0    0    0    0    0    0    0    0
##           102       0    0    0    0    0    0    0    0    0    0    0
##           106       0    0    0    0    0    0    0    0    0    0    0
##           109       0    0    0    0    0    0    0    0    0    0    0
##           111       0    0    0    0    0    0    0    0    0    0    0
##           116       0    0    0    0    0    0    0    0    0    0    0
##           119       0    0    0    0    0    0    0    0    0    0    0
##           123       0    0    0    0    0    0    0    0    0    0    0
##           127       0    0    0    0    0    0    0    0    0    0    0
##           129       0    0    0    0    0    0    0    0    0    0    0
##           130       0    0    0    0    0    0    0    0    0    0    0
##           134       0    0    0    0    0    0    0    0    0    0    0
##           135       0    0    0    0    0    0    0    0    0    0    0
##           137       0    0    0    0    0    0    0    0    0    0    0
##           138       0    0    0    0    0    0    0    0    0    0    0
##           140       0    0    0    0    0    0    0    0    0    0    0
##           141       0    0    0    0    0    0    0    0    0    0    0
##           143       0    0    0    0    0    0    0    0    0    0    0
##           144       0    0    0    0    0    0    0    0    0    0    0
##           146       0    0    0    0    0    0    0    0    0    0    0
##           149       0    0    0    0    0    0    0    0    0    0    0
##           150       0    0    0    0    0    0    0    0    0    0    0
##           151       0    0    0    0    0    0    0    0    0    0    0
##           154       0    0    0    0    0    0    0    0    0    0    0
##           158       0    0    0    0    0    0    0    0    0    0    0
##           160       0    0    0    0    0    0    0    0    0    0    0
##           162       0    0    0    0    0    0    0    0    0    0    0
##           163       0    0    0    0    0    0    0    0    0    0    0
##           168       0    0    0    0    0    0    0    0    0    0    0
##           176       0    0    0    0    0    0    0    0    0    0    0
##           178       0    0    0    0    0    0    0    0    0    0    0
##           180       0    0    0    0    0    0    0    0    0    0    0
##           181       0    0    0    0    0    0    0    0    0    0    0
##           183       0    0    0    0    0    0    0    0    0    0    0
##           186       0    0    0    0    0    0    0    0    0    0    0
##           190       0    0    0    0    0    0    0    0    0    0    0
##           191       0    0    0    0    0    0    0    0    0    0    0
##           192       0    0    0    0    0    0    0    0    0    0    0
##           196       0    0    0    0    0    0    0    0    0    0    0
##           201       0    0    0    0    0    0    0    0    0    0    0
##           202       0    0    0    0    0    0    0    0    0    0    0
##           205       0    0    0    0    0    0    0    0    0    0    0
##           206       0    0    0    0    0    0    0    0    0    0    0
##           211       0    0    0    0    0    0    0    0    0    0    0
##           213       0    0    0    0    0    0    0    0    0    0    0
##           215       0    0    0    0    0    0    0    0    0    0    0
##           217       0    0    0    0    0    0    0    0    0    0    0
##           218       0    0    0    0    0    0    0    0    0    0    0
##           221       0    0    0    0    0    0    0    0    0    0    0
##           223       0    0    0    0    0    0    0    0    0    0    0
##           224       0    0    0    0    0    0    0    0    0    0    0
##           226       0    0    0    0    0    0    0    0    0    0    0
##           228       0    0    0    0    0    0    0    0    0    0    0
##           233       0    0    0    0    0    0    0    0    0    0    0
##           236       0    0    0    0    0    0    0    0    0    0    0
##           237       0    0    0    0    0    0    0    0    0    0    0
##           238       0    0    0    0    0    0    0    0    0    0    0
##           240       0    0    0    0    0    0    0    0    0    0    0
##           241       0    0    0    0    0    0    0    0    0    0    0
##           245       0    0    0    0    0    0    0    0    0    0    0
##           246       0    0    0    0    0    0    0    0    0    0    0
##           248       0    0    0    0    0    0    0    0    0    0    0
##           250       0    0    0    0    0    0    0    0    0    0    0
##           251       0    0    0    0    0    0    0    0    0    0    0
##           256       0    0    0    0    0    0    0    0    0    0    0
##           258       0    0    0    0    0    0    0    0    0    0    0
##           261       0    0    0    0    0    0    0    0    0    0    0
##           262       0    0    0    0    0    0    0    0    0    0    0
##           264       0    0    0    0    0    0    0    0    0    0    0
##           266       0    0    0    0    0    0    0    0    0    0    0
##           268       0    0    0    0    0    0    0    0    0    0    0
##           269       0    0    0    0    0    0    0    0    0    0    0
##           277       0    0    0    0    0    0    0    0    0    0    0
##           278       0    0    0    0    0    0    0    0    0    0    0
##           279       0    0    0    0    0    0    0    0    0    0    0
##           280       0    0    0    0    0    0    0    0    0    0    0
##           285       0    0    0    0    0    0    0    0    0    0    0
##           286       0    0    0    0    0    0    0    0    0    0    0
##           287       0    0    0    0    0    0    0    0    0    0    0
##           292       0    0    0    0    0    0    0    0    0    0    0
##           294       0    0    0    0    0    0    0    0    0    0    0
##           295       0    0    0    0    0    0    0    0    0    0    0
##           296       0    0    0    0    0    0    0    0    0    0    0
##           300       0    0    0    0    0    0    0    0    0    0    0
##           301       0    0    0    0    0    0    0    0    0    0    0
##           302       0    0    0    0    0    0    0    0    0    0    0
##           305       0    0    0    0    0    0    0    0    0    0    0
##           308       0    0    0    0    0    0    0    0    0    0    0
##           309       0    0    0    0    0    0    0    0    0    0    0
##           313       0    0    0    0    0    0    0    0    0    0    0
##           317       0    0    0    0    0    0    0    0    0    0    0
##           318       0    0    0    0    0    0    0    0    0    0    0
##           321       0    0    0    0    0    0    0    0    0    0    0
##           322       0    0    0    0    0    0    0    0    0    0    0
##           324       0    0    0    0    0    0    0    0    0    0    0
##           325       0    0    0    0    0    0    0    0    0    0    0
##           326       0    0    0    0    0    0    0    0    0    0    0
##           331       0    0    0    0    0    0    0    0    0    0    0
##           336       0    0    0    0    0    0    0    0    0    0    0
##           339       0    0    0    0    0    0    0    0    0    0    0
##           340       0    0    0    0    0    0    0    0    0    0    0
##           341       0    0    0    0    0    0    0    0    0    0    0
##           342       0    0    0    0    0    0    0    0    0    0    0
##           343       0    0    0    0    0    0    0    0    0    0    0
##           346       0    0    0    0    0    0    0    0    0    0    0
##           348       0    0    0    0    0    0    0    0    0    0    0
##           349       0    0    0    0    0    0    0    0    0    0    0
##           350       0    0    0    0    0    0    0    0    0    0    0
##           354       0    0    0    0    0    0    0    0    0    0    0
##           356       0    0    0    0    0    0    0    0    0    0    0
##           357       0    0    0    0    0    0    0    0    0    0    0
##           358       0    0    0    0    0    0    0    0    0    0    0
##           365       0    0    0    0    0    0    0    0    0    0    0
##           366       0    0    0    0    0    0    0    0    0    0    0
##           368       0    0    0    0    0    0    0    0    0    0    0
##           369       0    0    0    0    0    0    0    0    0    0    0
##           371       0    0    0    0    0    0    0    0    0    0    0
##           373       0    0    0    0    0    0    0    0    0    0    0
##           375       0    0    0    0    0    0    0    0    0    0    0
##           377       0    0    0    0    0    0    0    0    0    0    0
##           378       0    0    0    0    0    0    0    0    0    0    0
##           379       0    0    0    0    0    0    0    0    0    0    0
##           380       0    0    0    0    0    0    0    0    0    0    0
##           381       0    0    0    0    0    0    0    0    0    0    0
##           382       0    0    0    0    0    0    0    0    0    0    0
##           383       0    0    0    0    0    0    0    0    0    0    0
##           384       0    0    0    0    0    0    0    0    0    0    0
##           386       0    0    0    0    0    0    0    0    0    0    0
##           387       0    0    0    0    0    0    0    0    0    0    0
##           390       0    0    0    0    0    0    0    0    0    0    0
##           391       0    0    0    0    0    0    0    0    0    0    0
##           392       0    0    0    0    0    0    0    0    0    0    0
##           393       0    0    0    0    0    0    0    0    0    0    0
##           395       0    0    0    0    0    0    0    0    0    0    0
##           396       0    0    0    0    0    0    0    0    0    0    0
##           397       0    0    0    0    0    0    0    0    0    0    0
##           398       0    0    0    0    0    0    0    0    0    0    0
##           399       0    0    0    0    0    0    0    0    0    0    0
##           400       0    0    0    0    0    0    0    0    0    0    0
##           401       0    0    0    0    0    0    0    0    0    0    0
##           402       0    0    0    0    0    0    0    0    0    0    0
##           403       0    0    0    0    0    0    0    0    0    0    0
##           404       0    0    0    0    0    0    0    0    0    0    0
##           407       0    0    0    0    0    0    0    0    0    0    0
##           408       0    0    0    0    0    0    0    0    0    0    0
##           410       0    0    0    0    0    0    0    0    0    0    0
##           411       0    0    0    0    0    0    0    0    0    0    0
##           412       0    0    0    0    0    0    0    0    0    0    0
##           413       0    0    0    0    0    0    0    0    0    0    0
##           414       0    0    0    0    0    0    0    0    0    0    0
##           416       0    0    0    0    0    0    0    0    0    0    0
##           417       0    0    0    0    0    0    0    0    0    0    0
##           419       0    0    0    0    0    0    0    0    0    0    0
##           420       0    0    0    0    0    0    0    0    0    0    0
##           421       0    0    0    0    0    0    0    0    0    0    0
##           422       0    0    0    0    0    0    0    0    0    0    0
##           423       0    0    0    0    0    0    0    0    0    0    0
##           424       0    0    0    0    0    0    0    0    0    0    0
##           425       0    0    0    0    0    0    0    0    0    0    0
##           426       0    0    0    0    0    0    0    0    0    0    0
##           427       0    0    0    0    0    0    0    0    0    0    0
##           428       0    0    0    0    0    0    0    0    0    0    0
##           429       0    0    0    0    0    0    0    0    0    0    0
##           430       0    0    0    0    0    0    0    0    0    0    0
##           431       0    0    0    0    0    0    0    0    0    0    0
##           432       0    0    0    0    0    0    0    0    0    0    0
##           434       0    0    0    0    0    0    0    0    0    0    0
##           435       0    0    0    0    0    0    0    0    0    0    0
##           436       0    0    0    0    0    0    0    0    0    0    0
##           437       0    0    0    0    0    0    0    0    0    0    0
##           438       0    0    0    0    0    0    0    0    0    0    0
##           440       0    0    0    0    0    0    0    0    0    0    0
##           441       0    0    0    0    0    0    0    0    0    0    0
##           444       0    0    0    0    0    0    0    0    0    0    0
##           445       0    0    0    0    0    0    0    0    0    0    0
##           446       0    0    0    0    0    0    0    0    0    0    0
##           447       0    0    0    0    0    0    0    0    0    0    0
##           448       0    0    0    0    0    0    0    0    0    0    0
##           449       0    0    0    0    0    0    0    0    0    0    0
##           450       0    0    0    0    0    0    0    0    0    0    0
##           451       0    0    0    0    0    0    0    0    0    0    0
##           452       0    0    0    0    0    0    0    0    0    0    0
##           454       0    0    0    0    0    0    0    0    0    0    0
##           455       0    0    0    0    0    0    0    0    0    0    0
##           456       0    0    0    0    0    0    0    0    0    0    0
##           458       0    0    0    0    0    0    0    0    0    0    0
##           459       0    0    0    0    0    0    0    0    0    0    0
##           460       0    0    0    0    0    0    0    0    0    0    0
##           461       0    0    0    0    0    0    0    0    0    0    0
##           462       0    0    0    0    0    0    0    0    0    0    0
##           463       0    0    0    0    0    0    0    0    0    0    0
##           464       0    0    0    0    0    0    0    0    0    0    0
##           465       0    0    0    0    0    0    0    0    0    0    0
##           466       0    0    0    0    0    0    0    0    0    0    0
##           467       0    0    0    0    0    0    0    0    0    0    0
##           468       0    0    0    0    0    0    0    0    0    0    0
##           469       0    0    0    0    0    0    0    0    0    0    0
##           471       0    0    0    0    0    0    0    0    0    0    0
##           472       0    0    0    0    0    0    0    0    0    0    0
##           473       0    0    0    0    0    0    0    0    0    0    0
##           474       0    0    0    0    0    0    0    0    0    0    0
##           475       0    0    0    0    0    0    0    0    0    0    0
##           476       0    0    0    0    0    0    0    0    0    0    0
##           477       0    0    0    0    0    0    0    0    0    0    0
##           478       0    0    0    0    0    0    0    0    0    0    0
##           480       0    0    0    0    0    0    0    0    0    0    0
##           482       0    0    0    0    0    0    0    0    0    0    0
##           483       0    0    0    0    0    0    0    0    0    0    0
##           484       0    0    0    0    0    0    0    0    0    0    0
##           485       0    0    0    0    0    0    0    0    0    0    0
##           486       0    0    0    0    0    0    0    0    0    0    0
##           488       0    0    0    0    0    0    0    0    0    0    0
##           489       0    0    0    0    0    0    0    0    0    0    0
##           490       0    0    0    0    0    0    0    0    0    0    0
##           492       0    0    0    0    0    0    0    0    0    0    0
##           493       0    0    0    0    0    0    0    0    0    0    0
##           494       0    0    0    0    0    0    0    0    0    0    0
##           495       0    0    0    0    0    0    0    0    0    0    0
##           496       0    0    0    0    0    0    0    0    0    0    0
##           497       0    0    0    0    0    0    0    0    0    0    0
##           498       0    0    0    0    0    0    0    0    0    0    0
##           500       0    0    0    0    0    0    0    0    0    0    0
##           501       0    0    0    0    0    0    0    0    0    0    0
##           502       0    0    0    0    0    0    0    0    0    0    0
##           503       0    0    0    0    0    0    0    0    0    0    0
##           504       0    0    0    0    0    0    0    0    0    0    0
##           505       0    0    0    0    0    0    0    0    0    0    0
##           506       0    0    0    0    0    0    0    0    0    0    0
##           507       0    0    0    0    0    0    0    0    0    0    0
##           508       0    0    0    0    0    0    0    0    0    0    0
##           510       0    0    0    0    0    0    0    0    0    0    0
##           511       0    0    0    0    0    0    0    0    0    0    0
##           512       0    0    0    0    0    0    0    0    0    0    0
##           513       0    0    0    0    0    0    0    0    0    0    0
##           514       0    0    0    0    0    0    0    0    0    0    0
##           515       0    0    0    0    0    0    0    0    0    0    0
##           516       0    0    0    0    0    0    0    0    0    0    0
##           517       0    0    0    0    0    0    0    0    0    0    0
##           518       0    0    0    0    0    0    0    0    0    0    0
##           519       0    0    0    0    0    0    0    0    0    0    0
##           520       0    0    0    0    0    0    0    0    0    0    0
##           521       0    0    0    0    0    0    0    0    0    0    0
##           522       0    0    0    0    0    0    0    0    0    0    0
##           523       0    0    0    0    0    0    0    0    0    0    0
##           525       0    0    0    0    0    0    0    0    0    0    0
##           526       0    0    0    0    0    0    0    0    0    0    0
##           527       0    0    0    0    0    0    0    0    0    0    0
##           528       0    0    0    0    0    0    0    0    0    0    0
##           529       0    0    0    0    0    0    0    0    0    0    0
##           530       0    0    0    0    0    0    0    0    0    0    0
##           531       0    0    0    0    0    0    0    0    0    0    0
##           532       0    0    0    0    0    0    0    0    0    0    0
##           533       0    0    0    0    0    0    0    0    0    0    0
##           534       0    0    0    0    0    0    0    0    0    0    0
##           535       0    0    0    0    0    0    0    0    0    0    0
##           536       0    0    0    0    0    0    0    0    0    0    0
##           537       0    0    0    0    0    0    0    0    0    0    0
##           538       0    0    0    0    0    0    0    0    0    0    0
##           539       0    0    0    0    0    0    0    0    0    0    0
##           541       0    0    0    0    0    0    0    0    0    0    0
##           542       0    0    0    0    0    0    0    0    0    0    0
##           544       0    0    0    0    0    0    0    0    0    0    0
##           545       0    0    0    0    0    0    0    0    0    0    0
##           546       0    0    0    0    0    0    0    0    0    0    0
##           547       0    0    0    0    0    0    0    0    0    0    0
##           548       0    0    0    0    0    0    0    0    0    0    0
##           549       0    0    0    0    0    0    0    0    0    0    0
##           550       0    0    0    0    0    0    0    0    0    0    0
##           552       0    0    0    0    0    0    0    0    0    0    0
##           553       0    0    0    0    0    0    0    0    0    0    0
##           555       0    0    0    0    0    0    0    0    0    0    0
##           556       0    0    0    0    0    0    0    0    0    0    0
##           557       0    0    0    0    0    0    0    0    0    0    0
##           558       0    0    0    0    0    0    0    0    0    0    0
##           559       0    0    0    0    0    0    0    0    0    0    0
##           560       0    0    0    0    0    0    0    0    0    0    0
##                 
## filteredTestPred 8000 8100 8300 8400 8500 8800 8900 9000 9100 9300 9400
##           4         0    0    0    0    0    0    0    0    0    0    0
##           23        0    0    0    0    0    0    0    0    0    0    0
##           41        0    0    0    0    0    0    0    0    0    0    0
##           45        0    0    0    0    0    0    0    0    0    0    0
##           47        0    0    0    0    0    0    0    0    0    0    0
##           48        0    0    0    0    0    0    0    0    0    0    0
##           51        0    0    0    0    0    0    0    0    0    0    0
##           60        0    0    0    0    0    0    0    0    0    0    0
##           64        0    0    0    0    0    0    0    0    0    0    0
##           66        0    0    0    0    0    0    0    0    0    0    0
##           70        0    0    0    0    0    0    0    0    0    0    0
##           80        0    0    0    0    0    0    0    0    0    0    0
##           82        0    0    0    0    0    0    0    0    0    0    0
##           84        0    0    0    0    0    0    0    0    0    0    0
##           86        0    0    0    0    0    0    0    0    0    0    0
##           87        0    0    0    0    0    0    0    0    0    0    0
##           88        0    0    0    0    0    0    0    0    0    0    0
##           90        0    0    0    0    0    0    0    0    0    0    0
##           91        0    0    0    0    0    0    0    0    0    0    0
##           95        0    0    0    0    0    0    0    0    0    0    0
##           97        0    0    0    0    0    0    0    0    0    0    0
##           98        0    0    0    0    0    0    0    0    0    0    0
##           99        0    0    0    0    0    0    0    0    0    0    0
##           102       0    0    0    0    0    0    0    0    0    0    0
##           106       0    0    0    0    0    0    0    0    0    0    0
##           109       0    0    0    0    0    0    0    0    0    0    0
##           111       0    0    0    0    0    0    0    0    0    0    0
##           116       0    0    0    0    0    0    0    0    0    0    0
##           119       0    0    0    0    0    0    0    0    0    0    0
##           123       0    0    0    0    0    0    0    0    0    0    0
##           127       0    0    0    0    0    0    0    0    0    0    0
##           129       0    0    0    0    0    0    0    0    0    0    0
##           130       0    0    0    0    0    0    0    0    0    0    0
##           134       0    0    0    0    0    0    0    0    0    0    0
##           135       0    0    0    0    0    0    0    0    0    0    0
##           137       0    0    0    0    0    0    0    0    0    0    0
##           138       0    0    0    0    0    0    0    0    0    0    0
##           140       0    0    0    0    0    0    0    0    0    0    0
##           141       0    0    0    0    0    0    0    0    0    0    0
##           143       0    0    0    0    0    0    0    0    0    0    0
##           144       0    0    0    0    0    0    0    0    0    0    0
##           146       0    0    0    0    0    0    0    0    0    0    0
##           149       0    0    0    0    0    0    0    0    0    0    0
##           150       0    0    0    0    0    0    0    0    0    0    0
##           151       0    0    0    0    0    0    0    0    0    0    0
##           154       0    0    0    0    0    0    0    0    0    0    0
##           158       0    0    0    0    0    0    0    0    0    0    0
##           160       0    0    0    0    0    0    0    0    0    0    0
##           162       0    0    0    0    0    0    0    0    0    0    0
##           163       0    0    0    0    0    0    0    0    0    0    0
##           168       0    0    0    0    0    0    0    0    0    0    0
##           176       0    0    0    0    0    0    0    0    0    0    0
##           178       0    0    0    0    0    0    0    0    0    0    0
##           180       0    0    0    0    0    0    0    0    0    0    0
##           181       0    0    0    0    0    0    0    0    0    0    0
##           183       0    0    0    0    0    0    0    0    0    0    0
##           186       0    0    0    0    0    0    0    0    0    0    0
##           190       0    0    0    0    0    0    0    0    0    0    0
##           191       0    0    0    0    0    0    0    0    0    0    0
##           192       0    0    0    0    0    0    0    0    0    0    0
##           196       0    0    0    0    0    0    0    0    0    0    0
##           201       0    0    0    0    0    0    0    0    0    0    0
##           202       0    0    0    0    0    0    0    0    0    0    0
##           205       0    0    0    0    0    0    0    0    0    0    0
##           206       0    0    0    0    0    0    0    0    0    0    0
##           211       0    0    0    0    0    0    0    0    0    0    0
##           213       0    0    0    0    0    0    0    0    0    0    0
##           215       0    0    0    0    0    0    0    0    0    0    0
##           217       0    0    0    0    0    0    0    0    0    0    0
##           218       0    0    0    0    0    0    0    0    0    0    0
##           221       0    0    0    0    0    0    0    0    0    0    0
##           223       0    0    0    0    0    0    0    0    0    0    0
##           224       0    0    0    0    0    0    0    0    0    0    0
##           226       0    0    0    0    0    0    0    0    0    0    0
##           228       0    0    0    0    0    0    0    0    0    0    0
##           233       0    0    0    0    0    0    0    0    0    0    0
##           236       0    0    0    0    0    0    0    0    0    0    0
##           237       0    0    0    0    0    0    0    0    0    0    0
##           238       0    0    0    0    0    0    0    0    0    0    0
##           240       0    0    0    0    0    0    0    0    0    0    0
##           241       0    0    0    0    0    0    0    0    0    0    0
##           245       0    0    0    0    0    0    0    0    0    0    0
##           246       0    0    0    0    0    0    0    0    0    0    0
##           248       0    0    0    0    0    0    0    0    0    0    0
##           250       0    0    0    0    0    0    0    0    0    0    0
##           251       0    0    0    0    0    0    0    0    0    0    0
##           256       0    0    0    0    0    0    0    0    0    0    0
##           258       0    0    0    0    0    0    0    0    0    0    0
##           261       0    0    0    0    0    0    0    0    0    0    0
##           262       0    0    0    0    0    0    0    0    0    0    0
##           264       0    0    0    0    0    0    0    0    0    0    0
##           266       0    0    0    0    0    0    0    0    0    0    0
##           268       0    0    0    0    0    0    0    0    0    0    0
##           269       0    0    0    0    0    0    0    0    0    0    0
##           277       0    0    0    0    0    0    0    0    0    0    0
##           278       0    0    0    0    0    0    0    0    0    0    0
##           279       0    0    0    0    0    0    0    0    0    0    0
##           280       0    0    0    0    0    0    0    0    0    0    0
##           285       0    0    0    0    0    0    0    0    0    0    0
##           286       0    0    0    0    0    0    0    0    0    0    0
##           287       0    0    0    0    0    0    0    0    0    0    0
##           292       0    0    0    0    0    0    0    0    0    0    0
##           294       0    0    0    0    0    0    0    0    0    0    0
##           295       0    0    0    0    0    0    0    0    0    0    0
##           296       0    0    0    0    0    0    0    0    0    0    0
##           300       0    0    0    0    0    0    0    0    0    0    0
##           301       0    0    0    0    0    0    0    0    0    0    0
##           302       0    0    0    0    0    0    0    0    0    0    0
##           305       0    0    0    0    0    0    0    0    0    0    0
##           308       0    0    0    0    0    0    0    0    0    0    0
##           309       0    0    0    0    0    0    0    0    0    0    0
##           313       0    0    0    0    0    0    0    0    0    0    0
##           317       0    0    0    0    0    0    0    0    0    0    0
##           318       0    0    0    0    0    0    0    0    0    0    0
##           321       0    0    0    0    0    0    0    0    0    0    0
##           322       0    0    0    0    0    0    0    0    0    0    0
##           324       0    0    0    0    0    0    0    0    0    0    0
##           325       0    0    0    0    0    0    0    0    0    0    0
##           326       0    0    0    0    0    0    0    0    0    0    0
##           331       0    0    0    0    0    0    0    0    0    0    0
##           336       0    0    0    0    0    0    0    0    0    0    0
##           339       0    0    0    0    0    0    0    0    0    0    0
##           340       0    0    0    0    0    0    0    0    0    0    0
##           341       0    0    0    0    0    0    0    0    0    0    0
##           342       0    0    0    0    0    0    0    0    0    0    0
##           343       0    0    0    0    0    0    0    0    0    0    0
##           346       0    0    0    0    0    0    0    0    0    0    0
##           348       0    0    0    0    0    0    0    0    0    0    0
##           349       0    0    0    0    0    0    0    0    0    0    0
##           350       0    0    0    0    0    0    0    0    0    0    0
##           354       0    0    0    0    0    0    0    0    0    0    0
##           356       0    0    0    0    0    0    0    0    0    0    0
##           357       0    0    0    0    0    0    0    0    0    0    0
##           358       0    0    0    0    0    0    0    0    0    0    0
##           365       0    0    0    0    0    0    0    0    0    0    0
##           366       0    0    0    0    0    0    0    0    0    0    0
##           368       0    0    0    0    0    0    0    0    0    0    0
##           369       0    0    0    0    0    0    0    0    0    0    0
##           371       0    0    0    0    0    0    0    0    0    0    0
##           373       0    0    0    0    0    0    0    0    0    0    0
##           375       0    0    0    0    0    0    0    0    0    0    0
##           377       0    0    0    0    0    0    0    0    0    0    0
##           378       0    0    0    0    0    0    0    0    0    0    0
##           379       0    0    0    0    0    0    0    0    0    0    0
##           380       0    0    0    0    0    0    0    0    0    0    0
##           381       0    0    0    0    0    0    0    0    0    0    0
##           382       0    0    0    0    0    0    0    0    0    0    0
##           383       0    0    0    0    0    0    0    0    0    0    0
##           384       0    0    0    0    0    0    0    0    0    0    0
##           386       0    0    0    0    0    0    0    0    0    0    0
##           387       0    0    0    0    0    0    0    0    0    0    0
##           390       0    0    0    0    0    0    0    0    0    0    0
##           391       0    0    0    0    0    0    0    0    0    0    0
##           392       0    0    0    0    0    0    0    0    0    0    0
##           393       0    0    0    0    0    0    0    0    0    0    0
##           395       0    0    0    0    0    0    0    0    0    0    0
##           396       0    0    0    0    0    0    0    0    0    0    0
##           397       0    0    0    0    0    0    0    0    0    0    0
##           398       0    0    0    0    0    0    0    0    0    0    0
##           399       0    0    0    0    0    0    0    0    0    0    0
##           400       0    0    0    0    0    0    0    0    0    0    0
##           401       0    0    0    0    0    0    0    0    0    0    0
##           402       0    0    0    0    0    0    0    0    0    0    0
##           403       0    0    0    0    0    0    0    0    0    0    0
##           404       0    0    0    0    0    0    0    0    0    0    0
##           407       0    0    0    0    0    0    0    0    0    0    0
##           408       0    0    0    0    0    0    0    0    0    0    0
##           410       0    0    0    0    0    0    0    0    0    0    0
##           411       0    0    0    0    0    0    0    0    0    0    0
##           412       0    0    0    0    0    0    0    0    0    0    0
##           413       0    0    0    0    0    0    0    0    0    0    0
##           414       0    0    0    0    0    0    0    0    0    0    0
##           416       0    0    0    0    0    0    0    0    0    0    0
##           417       0    0    0    0    0    0    0    0    0    0    0
##           419       0    0    0    0    0    0    0    0    0    0    0
##           420       0    0    0    0    0    0    0    0    0    0    0
##           421       0    0    0    0    0    0    0    0    0    0    0
##           422       0    0    0    0    0    0    0    0    0    0    0
##           423       0    0    0    0    0    0    0    0    0    0    0
##           424       0    0    0    0    0    0    0    0    0    0    0
##           425       0    0    0    0    0    0    0    0    0    0    0
##           426       0    0    0    0    0    0    0    0    0    0    0
##           427       0    0    0    0    0    0    0    0    0    0    0
##           428       0    0    0    0    0    0    0    0    0    0    0
##           429       0    0    0    0    0    0    0    0    0    0    0
##           430       0    0    0    0    0    0    0    0    0    0    0
##           431       0    0    0    0    0    0    0    0    0    0    0
##           432       0    0    0    0    0    0    0    0    0    0    0
##           434       0    0    0    0    0    0    0    0    0    0    0
##           435       0    0    0    0    0    0    0    0    0    0    0
##           436       0    0    0    0    0    0    0    0    0    0    0
##           437       0    0    0    0    0    0    0    0    0    0    0
##           438       0    0    0    0    0    0    0    0    0    0    0
##           440       0    0    0    0    0    0    0    0    0    0    0
##           441       0    0    0    0    0    0    0    0    0    0    0
##           444       0    0    0    0    0    0    0    0    0    0    0
##           445       0    0    0    0    0    0    0    0    0    0    0
##           446       0    0    0    0    0    0    0    0    0    0    0
##           447       0    0    0    0    0    0    0    0    0    0    0
##           448       0    0    0    0    0    0    0    0    0    0    0
##           449       0    0    0    0    0    0    0    0    0    0    0
##           450       0    0    0    0    0    0    0    0    0    0    0
##           451       0    0    0    0    0    0    0    0    0    0    0
##           452       0    0    0    0    0    0    0    0    0    0    0
##           454       0    0    0    0    0    0    0    0    0    0    0
##           455       0    0    0    0    0    0    0    0    0    0    0
##           456       0    0    0    0    0    0    0    0    0    0    0
##           458       0    0    0    0    0    0    0    0    0    0    0
##           459       0    0    0    0    0    0    0    0    0    0    0
##           460       0    0    0    0    0    0    0    0    0    0    0
##           461       0    0    0    0    0    0    0    0    0    0    0
##           462       0    0    0    0    0    0    0    0    0    0    0
##           463       0    0    0    0    0    0    0    0    0    0    0
##           464       0    0    0    0    0    0    0    0    0    0    0
##           465       0    0    0    0    0    0    0    0    0    0    0
##           466       0    0    0    0    0    0    0    0    0    0    0
##           467       0    0    0    0    0    0    0    0    0    0    0
##           468       0    0    0    0    0    0    0    0    0    0    0
##           469       0    0    0    0    0    0    0    0    0    0    0
##           471       0    0    0    0    0    0    0    0    0    0    0
##           472       0    0    0    0    0    0    0    0    0    0    0
##           473       0    0    0    0    0    0    0    0    0    0    0
##           474       0    0    0    0    0    0    0    0    0    0    0
##           475       0    0    0    0    0    0    0    0    0    0    0
##           476       0    0    0    0    0    0    0    0    0    0    0
##           477       0    0    0    0    0    0    0    0    0    0    0
##           478       0    0    0    0    0    0    0    0    0    0    0
##           480       0    0    0    0    0    0    0    0    0    0    0
##           482       0    0    0    0    0    0    0    0    0    0    0
##           483       0    0    0    0    0    0    0    0    0    0    0
##           484       0    0    0    0    0    0    0    0    0    0    0
##           485       0    0    0    0    0    0    0    0    0    0    0
##           486       0    0    0    0    0    0    0    0    0    0    0
##           488       0    0    0    0    0    0    0    0    0    0    0
##           489       0    0    0    0    0    0    0    0    0    0    0
##           490       0    0    0    0    0    0    0    0    0    0    0
##           492       0    0    0    0    0    0    0    0    0    0    0
##           493       0    0    0    0    0    0    0    0    0    0    0
##           494       0    0    0    0    0    0    0    0    0    0    0
##           495       0    0    0    0    0    0    0    0    0    0    0
##           496       0    0    0    0    0    0    0    0    0    0    0
##           497       0    0    0    0    0    0    0    0    0    0    0
##           498       0    0    0    0    0    0    0    0    0    0    0
##           500       0    0    0    0    0    0    0    0    0    0    0
##           501       0    0    0    0    0    0    0    0    0    0    0
##           502       0    0    0    0    0    0    0    0    0    0    0
##           503       0    0    0    0    0    0    0    0    0    0    0
##           504       0    0    0    0    0    0    0    0    0    0    0
##           505       0    0    0    0    0    0    0    0    0    0    0
##           506       0    0    0    0    0    0    0    0    0    0    0
##           507       0    0    0    0    0    0    0    0    0    0    0
##           508       0    0    0    0    0    0    0    0    0    0    0
##           510       0    0    0    0    0    0    0    0    0    0    0
##           511       0    0    0    0    0    0    0    0    0    0    0
##           512       0    0    0    0    0    0    0    0    0    0    0
##           513       0    0    0    0    0    0    0    0    0    0    0
##           514       0    0    0    0    0    0    0    0    0    0    0
##           515       0    0    0    0    0    0    0    0    0    0    0
##           516       0    0    0    0    0    0    0    0    0    0    0
##           517       0    0    0    0    0    0    0    0    0    0    0
##           518       0    0    0    0    0    0    0    0    0    0    0
##           519       0    0    0    0    0    0    0    0    0    0    0
##           520       0    0    0    0    0    0    0    0    0    0    0
##           521       0    0    0    0    0    0    0    0    0    0    0
##           522       0    0    0    0    0    0    0    0    0    0    0
##           523       0    0    0    0    0    0    0    0    0    0    0
##           525       0    0    0    0    0    0    0    0    0    0    0
##           526       0    0    0    0    0    0    0    0    0    0    0
##           527       0    0    0    0    0    0    0    0    0    0    0
##           528       0    0    0    0    0    0    0    0    0    0    0
##           529       0    0    0    0    0    0    0    0    0    0    0
##           530       0    0    0    0    0    0    0    0    0    0    0
##           531       0    0    0    0    0    0    0    0    0    0    0
##           532       0    0    0    0    0    0    0    0    0    0    0
##           533       0    0    0    0    0    0    0    0    0    0    0
##           534       0    0    0    0    0    0    0    0    0    0    0
##           535       0    0    0    0    0    0    0    0    0    0    0
##           536       0    0    0    0    0    0    0    0    0    0    0
##           537       0    0    0    0    0    0    0    0    0    0    0
##           538       0    0    0    0    0    0    0    0    0    0    0
##           539       0    0    0    0    0    0    0    0    0    0    0
##           541       0    0    0    0    0    0    0    0    0    0    0
##           542       0    0    0    0    0    0    0    0    0    0    0
##           544       0    0    0    0    0    0    0    0    0    0    0
##           545       0    0    0    0    0    0    0    0    0    0    0
##           546       0    0    0    0    0    0    0    0    0    0    0
##           547       0    0    0    0    0    0    0    0    0    0    0
##           548       0    0    0    0    0    0    0    0    0    0    0
##           549       0    0    0    0    0    0    0    0    0    0    0
##           550       0    0    0    0    0    0    0    0    0    0    0
##           552       0    0    0    0    0    0    0    0    0    0    0
##           553       0    0    0    0    0    0    0    0    0    0    0
##           555       0    0    0    0    0    0    0    0    0    0    0
##           556       0    0    0    0    0    0    0    0    0    0    0
##           557       0    0    0    0    0    0    0    0    0    0    0
##           558       0    0    0    0    0    0    0    0    0    0    0
##           559       0    0    0    0    0    0    0    0    0    0    0
##           560       0    0    0    0    0    0    0    0    0    0    0
##                 
## filteredTestPred 9500 9600 10300 10400 10700 11400 11500 11600 11700 11900
##           4         0    0     0     0     0     0     0     0     0     0
##           23        0    0     0     0     0     0     0     0     0     0
##           41        0    0     0     0     0     0     0     0     0     0
##           45        0    0     0     0     0     0     0     0     0     0
##           47        0    0     0     0     0     0     0     0     0     0
##           48        0    0     0     0     0     0     0     0     0     0
##           51        0    0     0     0     0     0     0     0     0     0
##           60        0    0     0     0     0     0     0     0     0     0
##           64        0    0     0     0     0     0     0     0     0     0
##           66        0    0     0     0     0     0     0     0     0     0
##           70        0    0     0     0     0     0     0     0     0     0
##           80        0    0     0     0     0     0     0     0     0     0
##           82        0    0     0     0     0     0     0     0     0     0
##           84        0    0     0     0     0     0     0     0     0     0
##           86        0    0     0     0     0     0     0     0     0     0
##           87        0    0     0     0     0     0     0     0     0     0
##           88        0    0     0     0     0     0     0     0     0     0
##           90        0    0     0     0     0     0     0     0     0     0
##           91        0    0     0     0     0     0     0     0     0     0
##           95        0    0     0     0     0     0     0     0     0     0
##           97        0    0     0     0     0     0     0     0     0     0
##           98        0    0     0     0     0     0     0     0     0     0
##           99        0    0     0     0     0     0     0     0     0     0
##           102       0    0     0     0     0     0     0     0     0     0
##           106       0    0     0     0     0     0     0     0     0     0
##           109       0    0     0     0     0     0     0     0     0     0
##           111       0    0     0     0     0     0     0     0     0     0
##           116       0    0     0     0     0     0     0     0     0     0
##           119       0    0     0     0     0     0     0     0     0     0
##           123       0    0     0     0     0     0     0     0     0     0
##           127       0    0     0     0     0     0     0     0     0     0
##           129       0    0     0     0     0     0     0     0     0     0
##           130       0    0     0     0     0     0     0     0     0     0
##           134       0    0     0     0     0     0     0     0     0     0
##           135       0    0     0     0     0     0     0     0     0     0
##           137       0    0     0     0     0     0     0     0     0     0
##           138       0    0     0     0     0     0     0     0     0     0
##           140       0    0     0     0     0     0     0     0     0     0
##           141       0    0     0     0     0     0     0     0     0     0
##           143       0    0     0     0     0     0     0     0     0     0
##           144       0    0     0     0     0     0     0     0     0     0
##           146       0    0     0     0     0     0     0     0     0     0
##           149       0    0     0     0     0     0     0     0     0     0
##           150       0    0     0     0     0     0     0     0     0     0
##           151       0    0     0     0     0     0     0     0     0     0
##           154       0    0     0     0     0     0     0     0     0     0
##           158       0    0     0     0     0     0     0     0     0     0
##           160       0    0     0     0     0     0     0     0     0     0
##           162       0    0     0     0     0     0     0     0     0     0
##           163       0    0     0     0     0     0     0     0     0     0
##           168       0    0     0     0     0     0     0     0     0     0
##           176       0    0     0     0     0     0     0     0     0     0
##           178       0    0     0     0     0     0     0     0     0     0
##           180       0    0     0     0     0     0     0     0     0     0
##           181       0    0     0     0     0     0     0     0     0     0
##           183       0    0     0     0     0     0     0     0     0     0
##           186       0    0     0     0     0     0     0     0     0     0
##           190       0    0     0     0     0     0     0     0     0     0
##           191       0    0     0     0     0     0     0     0     0     0
##           192       0    0     0     0     0     0     0     0     0     0
##           196       0    0     0     0     0     0     0     0     0     0
##           201       0    0     0     0     0     0     0     0     0     0
##           202       0    0     0     0     0     0     0     0     0     0
##           205       0    0     0     0     0     0     0     0     0     0
##           206       0    0     0     0     0     0     0     0     0     0
##           211       0    0     0     0     0     0     0     0     0     0
##           213       0    0     0     0     0     0     0     0     0     0
##           215       0    0     0     0     0     0     0     0     0     0
##           217       0    0     0     0     0     0     0     0     0     0
##           218       0    0     0     0     0     0     0     0     0     0
##           221       0    0     0     0     0     0     0     0     0     0
##           223       0    0     0     0     0     0     0     0     0     0
##           224       0    0     0     0     0     0     0     0     0     0
##           226       0    0     0     0     0     0     0     0     0     0
##           228       0    0     0     0     0     0     0     0     0     0
##           233       0    0     0     0     0     0     0     0     0     0
##           236       0    0     0     0     0     0     0     0     0     0
##           237       0    0     0     0     0     0     0     0     0     0
##           238       0    0     0     0     0     0     0     0     0     0
##           240       0    0     0     0     0     0     0     0     0     0
##           241       0    0     0     0     0     0     0     0     0     0
##           245       0    0     0     0     0     0     0     0     0     0
##           246       0    0     0     0     0     0     0     0     0     0
##           248       0    0     0     0     0     0     0     0     0     0
##           250       0    0     0     0     0     0     0     0     0     0
##           251       0    0     0     0     0     0     0     0     0     0
##           256       0    0     0     0     0     0     0     0     0     0
##           258       0    0     0     0     0     0     0     0     0     0
##           261       0    0     0     0     0     0     0     0     0     0
##           262       0    0     0     0     0     0     0     0     0     0
##           264       0    0     0     0     0     0     0     0     0     0
##           266       0    0     0     0     0     0     0     0     0     0
##           268       0    0     0     0     0     0     0     0     0     0
##           269       0    0     0     0     0     0     0     0     0     0
##           277       0    0     0     0     0     0     0     0     0     0
##           278       0    0     0     0     0     0     0     0     0     0
##           279       0    0     0     0     0     0     0     0     0     0
##           280       0    0     0     0     0     0     0     0     0     0
##           285       0    0     0     0     0     0     0     0     0     0
##           286       0    0     0     0     0     0     0     0     0     0
##           287       0    0     0     0     0     0     0     0     0     0
##           292       0    0     0     0     0     0     0     0     0     0
##           294       0    0     0     0     0     0     0     0     0     0
##           295       0    0     0     0     0     0     0     0     0     0
##           296       0    0     0     0     0     0     0     0     0     0
##           300       0    0     0     0     0     0     0     0     0     0
##           301       0    0     0     0     0     0     0     0     0     0
##           302       0    0     0     0     0     0     0     0     0     0
##           305       0    0     0     0     0     0     0     0     0     0
##           308       0    0     0     0     0     0     0     0     0     0
##           309       0    0     0     0     0     0     0     0     0     0
##           313       0    0     0     0     0     0     0     0     0     0
##           317       0    0     0     0     0     0     0     0     0     0
##           318       0    0     0     0     0     0     0     0     0     0
##           321       0    0     0     0     0     0     0     0     0     0
##           322       0    0     0     0     0     0     0     0     0     0
##           324       0    0     0     0     0     0     0     0     0     0
##           325       0    0     0     0     0     0     0     0     0     0
##           326       0    0     0     0     0     0     0     0     0     0
##           331       0    0     0     0     0     0     0     0     0     0
##           336       0    0     0     0     0     0     0     0     0     0
##           339       0    0     0     0     0     0     0     0     0     0
##           340       0    0     0     0     0     0     0     0     0     0
##           341       0    0     0     0     0     0     0     0     0     0
##           342       0    0     0     0     0     0     0     0     0     0
##           343       0    0     0     0     0     0     0     0     0     0
##           346       0    0     0     0     0     0     0     0     0     0
##           348       0    0     0     0     0     0     0     0     0     0
##           349       0    0     0     0     0     0     0     0     0     0
##           350       0    0     0     0     0     0     0     0     0     0
##           354       0    0     0     0     0     0     0     0     0     0
##           356       0    0     0     0     0     0     0     0     0     0
##           357       0    0     0     0     0     0     0     0     0     0
##           358       0    0     0     0     0     0     0     0     0     0
##           365       0    0     0     0     0     0     0     0     0     0
##           366       0    0     0     0     0     0     0     0     0     0
##           368       0    0     0     0     0     0     0     0     0     0
##           369       0    0     0     0     0     0     0     0     0     0
##           371       0    0     0     0     0     0     0     0     0     0
##           373       0    0     0     0     0     0     0     0     0     0
##           375       0    0     0     0     0     0     0     0     0     0
##           377       0    0     0     0     0     0     0     0     0     0
##           378       0    0     0     0     0     0     0     0     0     0
##           379       0    0     0     0     0     0     0     0     0     0
##           380       0    0     0     0     0     0     0     0     0     0
##           381       0    0     0     0     0     0     0     0     0     0
##           382       0    0     0     0     0     0     0     0     0     0
##           383       0    0     0     0     0     0     0     0     0     0
##           384       0    0     0     0     0     0     0     0     0     0
##           386       0    0     0     0     0     0     0     0     0     0
##           387       0    0     0     0     0     0     0     0     0     0
##           390       0    0     0     0     0     0     0     0     0     0
##           391       0    0     0     0     0     0     0     0     0     0
##           392       0    0     0     0     0     0     0     0     0     0
##           393       0    0     0     0     0     0     0     0     0     0
##           395       0    0     0     0     0     0     0     0     0     0
##           396       0    0     0     0     0     0     0     0     0     0
##           397       0    0     0     0     0     0     0     0     0     0
##           398       0    0     0     0     0     0     0     0     0     0
##           399       0    0     0     0     0     0     0     0     0     0
##           400       0    0     0     0     0     0     0     0     0     0
##           401       0    0     0     0     0     0     0     0     0     0
##           402       0    0     0     0     0     0     0     0     0     0
##           403       0    0     0     0     0     0     0     0     0     0
##           404       0    0     0     0     0     0     0     0     0     0
##           407       0    0     0     0     0     0     0     0     0     0
##           408       0    0     0     0     0     0     0     0     0     0
##           410       0    0     0     0     0     0     0     0     0     0
##           411       0    0     0     0     0     0     0     0     0     0
##           412       0    0     0     0     0     0     0     0     0     0
##           413       0    0     0     0     0     0     0     0     0     0
##           414       0    0     0     0     0     0     0     0     0     0
##           416       0    0     0     0     0     0     0     0     0     0
##           417       0    0     0     0     0     0     0     0     0     0
##           419       0    0     0     0     0     0     0     0     0     0
##           420       0    0     0     0     0     0     0     0     0     0
##           421       0    0     0     0     0     0     0     0     0     0
##           422       0    0     0     0     0     0     0     0     0     0
##           423       0    0     0     0     0     0     0     0     0     0
##           424       0    0     0     0     0     0     0     0     0     0
##           425       0    0     0     0     0     0     0     0     0     0
##           426       0    0     0     0     0     0     0     0     0     0
##           427       0    0     0     0     0     0     0     0     0     0
##           428       0    0     0     0     0     0     0     0     0     0
##           429       0    0     0     0     0     0     0     0     0     0
##           430       0    0     0     0     0     0     0     0     0     0
##           431       0    0     0     0     0     0     0     0     0     0
##           432       0    0     0     0     0     0     0     0     0     0
##           434       0    0     0     0     0     0     0     0     0     0
##           435       0    0     0     0     0     0     0     0     0     0
##           436       0    0     0     0     0     0     0     0     0     0
##           437       0    0     0     0     0     0     0     0     0     0
##           438       0    0     0     0     0     0     0     0     0     0
##           440       0    0     0     0     0     0     0     0     0     0
##           441       0    0     0     0     0     0     0     0     0     0
##           444       0    0     0     0     0     0     0     0     0     0
##           445       0    0     0     0     0     0     0     0     0     0
##           446       0    0     0     0     0     0     0     0     0     0
##           447       0    0     0     0     0     0     0     0     0     0
##           448       0    0     0     0     0     0     0     0     0     0
##           449       0    0     0     0     0     0     0     0     0     0
##           450       0    0     0     0     0     0     0     0     0     0
##           451       0    0     0     0     0     0     0     0     0     0
##           452       0    0     0     0     0     0     0     0     0     0
##           454       0    0     0     0     0     0     0     0     0     0
##           455       0    0     0     0     0     0     0     0     0     0
##           456       0    0     0     0     0     0     0     0     0     0
##           458       0    0     0     0     0     0     0     0     0     0
##           459       0    0     0     0     0     0     0     0     0     0
##           460       0    0     0     0     0     0     0     0     0     0
##           461       0    0     0     0     0     0     0     0     0     0
##           462       0    0     0     0     0     0     0     0     0     0
##           463       0    0     0     0     0     0     0     0     0     0
##           464       0    0     0     0     0     0     0     0     0     0
##           465       0    0     0     0     0     0     0     0     0     0
##           466       0    0     0     0     0     0     0     0     0     0
##           467       0    0     0     0     0     0     0     0     0     0
##           468       0    0     0     0     0     0     0     0     0     0
##           469       0    0     0     0     0     0     0     0     0     0
##           471       0    0     0     0     0     0     0     0     0     0
##           472       0    0     0     0     0     0     0     0     0     0
##           473       0    0     0     0     0     0     0     0     0     0
##           474       0    0     0     0     0     0     0     0     0     0
##           475       0    0     0     0     0     0     0     0     0     0
##           476       0    0     0     0     0     0     0     0     0     0
##           477       0    0     0     0     0     0     0     0     0     0
##           478       0    0     0     0     0     0     0     0     0     0
##           480       0    0     0     0     0     0     0     0     0     0
##           482       0    0     0     0     0     0     0     0     0     0
##           483       0    0     0     0     0     0     0     0     0     0
##           484       0    0     0     0     0     0     0     0     0     0
##           485       0    0     0     0     0     0     0     0     0     0
##           486       0    0     0     0     0     0     0     0     0     0
##           488       0    0     0     0     0     0     0     0     0     0
##           489       0    0     0     0     0     0     0     0     0     0
##           490       0    0     0     0     0     0     0     0     0     0
##           492       0    0     0     0     0     0     0     0     0     0
##           493       0    0     0     0     0     0     0     0     0     0
##           494       0    0     0     0     0     0     0     0     0     0
##           495       0    0     0     0     0     0     0     0     0     0
##           496       0    0     0     0     0     0     0     0     0     0
##           497       0    0     0     0     0     0     0     0     0     0
##           498       0    0     0     0     0     0     0     0     0     0
##           500       0    0     0     0     0     0     0     0     0     0
##           501       0    0     0     0     0     0     0     0     0     0
##           502       0    0     0     0     0     0     0     0     0     0
##           503       0    0     0     0     0     0     0     0     0     0
##           504       0    0     0     0     0     0     0     0     0     0
##           505       0    0     0     0     0     0     0     0     0     0
##           506       0    0     0     0     0     0     0     0     0     0
##           507       0    0     0     0     0     0     0     0     0     0
##           508       0    0     0     0     0     0     0     0     0     0
##           510       0    0     0     0     0     0     0     0     0     0
##           511       0    0     0     0     0     0     0     0     0     0
##           512       0    0     0     0     0     0     0     0     0     0
##           513       0    0     0     0     0     0     0     0     0     0
##           514       0    0     0     0     0     0     0     0     0     0
##           515       0    0     0     0     0     0     0     0     0     0
##           516       0    0     0     0     0     0     0     0     0     0
##           517       0    0     0     0     0     0     0     0     0     0
##           518       0    0     0     0     0     0     0     0     0     0
##           519       0    0     0     0     0     0     0     0     0     0
##           520       0    0     0     0     0     0     0     0     0     0
##           521       0    0     0     0     0     0     0     0     0     0
##           522       0    0     0     0     0     0     0     0     0     0
##           523       0    0     0     0     0     0     0     0     0     0
##           525       0    0     0     0     0     0     0     0     0     0
##           526       0    0     0     0     0     0     0     0     0     0
##           527       0    0     0     0     0     0     0     0     0     0
##           528       0    0     0     0     0     0     0     0     0     0
##           529       0    0     0     0     0     0     0     0     0     0
##           530       0    0     0     0     0     0     0     0     0     0
##           531       0    0     0     0     0     0     0     0     0     0
##           532       0    0     0     0     0     0     0     0     0     0
##           533       0    0     0     0     0     0     0     0     0     0
##           534       0    0     0     0     0     0     0     0     0     0
##           535       0    0     0     0     0     0     0     0     0     0
##           536       0    0     0     0     0     0     0     0     0     0
##           537       0    0     0     0     0     0     0     0     0     0
##           538       0    0     0     0     0     0     0     0     0     0
##           539       0    0     0     0     0     0     0     0     0     0
##           541       0    0     0     0     0     0     0     0     0     0
##           542       0    0     0     0     0     0     0     0     0     0
##           544       0    0     0     0     0     0     0     0     0     0
##           545       0    0     0     0     0     0     0     0     0     0
##           546       0    0     0     0     0     0     0     0     0     0
##           547       0    0     0     0     0     0     0     0     0     0
##           548       0    0     0     0     0     0     0     0     0     0
##           549       0    0     0     0     0     0     0     0     0     0
##           550       0    0     0     0     0     0     0     0     0     0
##           552       0    0     0     0     0     0     0     0     0     0
##           553       0    0     0     0     0     0     0     0     0     0
##           555       0    0     0     0     0     0     0     0     0     0
##           556       0    0     0     0     0     0     0     0     0     0
##           557       0    0     0     0     0     0     0     0     0     0
##           558       0    0     0     0     0     0     0     0     0     0
##           559       0    0     0     0     0     0     0     0     0     0
##           560       0    0     0     0     0     0     0     0     0     0
##                 
## filteredTestPred 12200 12300 12400 13300 13600 13900 14200 14400 14500
##           4          0     0     0     0     0     0     0     0     0
##           23         0     0     0     0     0     0     0     0     0
##           41         0     0     0     0     0     0     0     0     0
##           45         0     0     0     0     0     0     0     0     0
##           47         0     0     0     0     0     0     0     0     0
##           48         0     0     0     0     0     0     0     0     0
##           51         0     0     0     0     0     0     0     0     0
##           60         0     0     0     0     0     0     0     0     0
##           64         0     0     0     0     0     0     0     0     0
##           66         0     0     0     0     0     0     0     0     0
##           70         0     0     0     0     0     0     0     0     0
##           80         0     0     0     0     0     0     0     0     0
##           82         0     0     0     0     0     0     0     0     0
##           84         0     0     0     0     0     0     0     0     0
##           86         0     0     0     0     0     0     0     0     0
##           87         0     0     0     0     0     0     0     0     0
##           88         0     0     0     0     0     0     0     0     0
##           90         0     0     0     0     0     0     0     0     0
##           91         0     0     0     0     0     0     0     0     0
##           95         0     0     0     0     0     0     0     0     0
##           97         0     0     0     0     0     0     0     0     0
##           98         0     0     0     0     0     0     0     0     0
##           99         0     0     0     0     0     0     0     0     0
##           102        0     0     0     0     0     0     0     0     0
##           106        0     0     0     0     0     0     0     0     0
##           109        0     0     0     0     0     0     0     0     0
##           111        0     0     0     0     0     0     0     0     0
##           116        0     0     0     0     0     0     0     0     0
##           119        0     0     0     0     0     0     0     0     0
##           123        0     0     0     0     0     0     0     0     0
##           127        0     0     0     0     0     0     0     0     0
##           129        0     0     0     0     0     0     0     0     0
##           130        0     0     0     0     0     0     0     0     0
##           134        0     0     0     0     0     0     0     0     0
##           135        0     0     0     0     0     0     0     0     0
##           137        0     0     0     0     0     0     0     0     0
##           138        0     0     0     0     0     0     0     0     0
##           140        0     0     0     0     0     0     0     0     0
##           141        0     0     0     0     0     0     0     0     0
##           143        0     0     0     0     0     0     0     0     0
##           144        0     0     0     0     0     0     0     0     0
##           146        0     0     0     0     0     0     0     0     0
##           149        0     0     0     0     0     0     0     0     0
##           150        0     0     0     0     0     0     0     0     0
##           151        0     0     0     0     0     0     0     0     0
##           154        0     0     0     0     0     0     0     0     0
##           158        0     0     0     0     0     0     0     0     0
##           160        0     0     0     0     0     0     0     0     0
##           162        0     0     0     0     0     0     0     0     0
##           163        0     0     0     0     0     0     0     0     0
##           168        0     0     0     0     0     0     0     0     0
##           176        0     0     0     0     0     0     0     0     0
##           178        0     0     0     0     0     0     0     0     0
##           180        0     0     0     0     0     0     0     0     0
##           181        0     0     0     0     0     0     0     0     0
##           183        0     0     0     0     0     0     0     0     0
##           186        0     0     0     0     0     0     0     0     0
##           190        0     0     0     0     0     0     0     0     0
##           191        0     0     0     0     0     0     0     0     0
##           192        0     0     0     0     0     0     0     0     0
##           196        0     0     0     0     0     0     0     0     0
##           201        0     0     0     0     0     0     0     0     0
##           202        0     0     0     0     0     0     0     0     0
##           205        0     0     0     0     0     0     0     0     0
##           206        0     0     0     0     0     0     0     0     0
##           211        0     0     0     0     0     0     0     0     0
##           213        0     0     0     0     0     0     0     0     0
##           215        0     0     0     0     0     0     0     0     0
##           217        0     0     0     0     0     0     0     0     0
##           218        0     0     0     0     0     0     0     0     0
##           221        0     0     0     0     0     0     0     0     0
##           223        0     0     0     0     0     0     0     0     0
##           224        0     0     0     0     0     0     0     0     0
##           226        0     0     0     0     0     0     0     0     0
##           228        0     0     0     0     0     0     0     0     0
##           233        0     0     0     0     0     0     0     0     0
##           236        0     0     0     0     0     0     0     0     0
##           237        0     0     0     0     0     0     0     0     0
##           238        0     0     0     0     0     0     0     0     0
##           240        0     0     0     0     0     0     0     0     0
##           241        0     0     0     0     0     0     0     0     0
##           245        0     0     0     0     0     0     0     0     0
##           246        0     0     0     0     0     0     0     0     0
##           248        0     0     0     0     0     0     0     0     0
##           250        0     0     0     0     0     0     0     0     0
##           251        0     0     0     0     0     0     0     0     0
##           256        0     0     0     0     0     0     0     0     0
##           258        0     0     0     0     0     0     0     0     0
##           261        0     0     0     0     0     0     0     0     0
##           262        0     0     0     0     0     0     0     0     0
##           264        0     0     0     0     0     0     0     0     0
##           266        0     0     0     0     0     0     0     0     0
##           268        0     0     0     0     0     0     0     0     0
##           269        0     0     0     0     0     0     0     0     0
##           277        0     0     0     0     0     0     0     0     0
##           278        0     0     0     0     0     0     0     0     0
##           279        0     0     0     0     0     0     0     0     0
##           280        0     0     0     0     0     0     0     0     0
##           285        0     0     0     0     0     0     0     0     0
##           286        0     0     0     0     0     0     0     0     0
##           287        0     0     0     0     0     0     0     0     0
##           292        0     0     0     0     0     0     0     0     0
##           294        0     0     0     0     0     0     0     0     0
##           295        0     0     0     0     0     0     0     0     0
##           296        0     0     0     0     0     0     0     0     0
##           300        0     0     0     0     0     0     0     0     0
##           301        0     0     0     0     0     0     0     0     0
##           302        0     0     0     0     0     0     0     0     0
##           305        0     0     0     0     0     0     0     0     0
##           308        0     0     0     0     0     0     0     0     0
##           309        0     0     0     0     0     0     0     0     0
##           313        0     0     0     0     0     0     0     0     0
##           317        0     0     0     0     0     0     0     0     0
##           318        0     0     0     0     0     0     0     0     0
##           321        0     0     0     0     0     0     0     0     0
##           322        0     0     0     0     0     0     0     0     0
##           324        0     0     0     0     0     0     0     0     0
##           325        0     0     0     0     0     0     0     0     0
##           326        0     0     0     0     0     0     0     0     0
##           331        0     0     0     0     0     0     0     0     0
##           336        0     0     0     0     0     0     0     0     0
##           339        0     0     0     0     0     0     0     0     0
##           340        0     0     0     0     0     0     0     0     0
##           341        0     0     0     0     0     0     0     0     0
##           342        0     0     0     0     0     0     0     0     0
##           343        0     0     0     0     0     0     0     0     0
##           346        0     0     0     0     0     0     0     0     0
##           348        0     0     0     0     0     0     0     0     0
##           349        0     0     0     0     0     0     0     0     0
##           350        0     0     0     0     0     0     0     0     0
##           354        0     0     0     0     0     0     0     0     0
##           356        0     0     0     0     0     0     0     0     0
##           357        0     0     0     0     0     0     0     0     0
##           358        0     0     0     0     0     0     0     0     0
##           365        0     0     0     0     0     0     0     0     0
##           366        0     0     0     0     0     0     0     0     0
##           368        0     0     0     0     0     0     0     0     0
##           369        0     0     0     0     0     0     0     0     0
##           371        0     0     0     0     0     0     0     0     0
##           373        0     0     0     0     0     0     0     0     0
##           375        0     0     0     0     0     0     0     0     0
##           377        0     0     0     0     0     0     0     0     0
##           378        0     0     0     0     0     0     0     0     0
##           379        0     0     0     0     0     0     0     0     0
##           380        0     0     0     0     0     0     0     0     0
##           381        0     0     0     0     0     0     0     0     0
##           382        0     0     0     0     0     0     0     0     0
##           383        0     0     0     0     0     0     0     0     0
##           384        0     0     0     0     0     0     0     0     0
##           386        0     0     0     0     0     0     0     0     0
##           387        0     0     0     0     0     0     0     0     0
##           390        0     0     0     0     0     0     0     0     0
##           391        0     0     0     0     0     0     0     0     0
##           392        0     0     0     0     0     0     0     0     0
##           393        0     0     0     0     0     0     0     0     0
##           395        0     0     0     0     0     0     0     0     0
##           396        0     0     0     0     0     0     0     0     0
##           397        0     0     0     0     0     0     0     0     0
##           398        0     0     0     0     0     0     0     0     0
##           399        0     0     0     0     0     0     0     0     0
##           400        0     0     0     0     0     0     0     0     0
##           401        0     0     0     0     0     0     0     0     0
##           402        0     0     0     0     0     0     0     0     0
##           403        0     0     0     0     0     0     0     0     0
##           404        0     0     0     0     0     0     0     0     0
##           407        0     0     0     0     0     0     0     0     0
##           408        0     0     0     0     0     0     0     0     0
##           410        0     0     0     0     0     0     0     0     0
##           411        0     0     0     0     0     0     0     0     0
##           412        0     0     0     0     0     0     0     0     0
##           413        0     0     0     0     0     0     0     0     0
##           414        0     0     0     0     0     0     0     0     0
##           416        0     0     0     0     0     0     0     0     0
##           417        0     0     0     0     0     0     0     0     0
##           419        0     0     0     0     0     0     0     0     0
##           420        0     0     0     0     0     0     0     0     0
##           421        0     0     0     0     0     0     0     0     0
##           422        0     0     0     0     0     0     0     0     0
##           423        0     0     0     0     0     0     0     0     0
##           424        0     0     0     0     0     0     0     0     0
##           425        0     0     0     0     0     0     0     0     0
##           426        0     0     0     0     0     0     0     0     0
##           427        0     0     0     0     0     0     0     0     0
##           428        0     0     0     0     0     0     0     0     0
##           429        0     0     0     0     0     0     0     0     0
##           430        0     0     0     0     0     0     0     0     0
##           431        0     0     0     0     0     0     0     0     0
##           432        0     0     0     0     0     0     0     0     0
##           434        0     0     0     0     0     0     0     0     0
##           435        0     0     0     0     0     0     0     0     0
##           436        0     0     0     0     0     0     0     0     0
##           437        0     0     0     0     0     0     0     0     0
##           438        0     0     0     0     0     0     0     0     0
##           440        0     0     0     0     0     0     0     0     0
##           441        0     0     0     0     0     0     0     0     0
##           444        0     0     0     0     0     0     0     0     0
##           445        0     0     0     0     0     0     0     0     0
##           446        0     0     0     0     0     0     0     0     0
##           447        0     0     0     0     0     0     0     0     0
##           448        0     0     0     0     0     0     0     0     0
##           449        0     0     0     0     0     0     0     0     0
##           450        0     0     0     0     0     0     0     0     0
##           451        0     0     0     0     0     0     0     0     0
##           452        0     0     0     0     0     0     0     0     0
##           454        0     0     0     0     0     0     0     0     0
##           455        0     0     0     0     0     0     0     0     0
##           456        0     0     0     0     0     0     0     0     0
##           458        0     0     0     0     0     0     0     0     0
##           459        0     0     0     0     0     0     0     0     0
##           460        0     0     0     0     0     0     0     0     0
##           461        0     0     0     0     0     0     0     0     0
##           462        0     0     0     0     0     0     0     0     0
##           463        0     0     0     0     0     0     0     0     0
##           464        0     0     0     0     0     0     0     0     0
##           465        0     0     0     0     0     0     0     0     0
##           466        0     0     0     0     0     0     0     0     0
##           467        0     0     0     0     0     0     0     0     0
##           468        0     0     0     0     0     0     0     0     0
##           469        0     0     0     0     0     0     0     0     0
##           471        0     0     0     0     0     0     0     0     0
##           472        0     0     0     0     0     0     0     0     0
##           473        0     0     0     0     0     0     0     0     0
##           474        0     0     0     0     0     0     0     0     0
##           475        0     0     0     0     0     0     0     0     0
##           476        0     0     0     0     0     0     0     0     0
##           477        0     0     0     0     0     0     0     0     0
##           478        0     0     0     0     0     0     0     0     0
##           480        0     0     0     0     0     0     0     0     0
##           482        0     0     0     0     0     0     0     0     0
##           483        0     0     0     0     0     0     0     0     0
##           484        0     0     0     0     0     0     0     0     0
##           485        0     0     0     0     0     0     0     0     0
##           486        0     0     0     0     0     0     0     0     0
##           488        0     0     0     0     0     0     0     0     0
##           489        0     0     0     0     0     0     0     0     0
##           490        0     0     0     0     0     0     0     0     0
##           492        0     0     0     0     0     0     0     0     0
##           493        0     0     0     0     0     0     0     0     0
##           494        0     0     0     0     0     0     0     0     0
##           495        0     0     0     0     0     0     0     0     0
##           496        0     0     0     0     0     0     0     0     0
##           497        0     0     0     0     0     0     0     0     0
##           498        0     0     0     0     0     0     0     0     0
##           500        0     0     0     0     0     0     0     0     0
##           501        0     0     0     0     0     0     0     0     0
##           502        0     0     0     0     0     0     0     0     0
##           503        0     0     0     0     0     0     0     0     0
##           504        0     0     0     0     0     0     0     0     0
##           505        0     0     0     0     0     0     0     0     0
##           506        0     0     0     0     0     0     0     0     0
##           507        0     0     0     0     0     0     0     0     0
##           508        0     0     0     0     0     0     0     0     0
##           510        0     0     0     0     0     0     0     0     0
##           511        0     0     0     0     0     0     0     0     0
##           512        0     0     0     0     0     0     0     0     0
##           513        0     0     0     0     0     0     0     0     0
##           514        0     0     0     0     0     0     0     0     0
##           515        0     0     0     0     0     0     0     0     0
##           516        0     0     0     0     0     0     0     0     0
##           517        0     0     0     0     0     0     0     0     0
##           518        0     0     0     0     0     0     0     0     0
##           519        0     0     0     0     0     0     0     0     0
##           520        0     0     0     0     0     0     0     0     0
##           521        0     0     0     0     0     0     0     0     0
##           522        0     0     0     0     0     0     0     0     0
##           523        0     0     0     0     0     0     0     0     0
##           525        0     0     0     0     0     0     0     0     0
##           526        0     0     0     0     0     0     0     0     0
##           527        0     0     0     0     0     0     0     0     0
##           528        0     0     0     0     0     0     0     0     0
##           529        0     0     0     0     0     0     0     0     0
##           530        0     0     0     0     0     0     0     0     0
##           531        0     0     0     0     0     0     0     0     0
##           532        0     0     0     0     0     0     0     0     0
##           533        0     0     0     0     0     0     0     0     0
##           534        0     0     0     0     0     0     0     0     0
##           535        0     0     0     0     0     0     0     0     0
##           536        0     0     0     0     0     0     0     0     0
##           537        0     0     0     0     0     0     0     0     0
##           538        0     0     0     0     0     0     0     0     0
##           539        0     0     0     0     0     0     0     0     0
##           541        0     0     0     0     0     0     0     0     0
##           542        0     0     0     0     0     0     0     0     0
##           544        0     0     0     0     0     0     0     0     0
##           545        0     0     0     0     0     0     0     0     0
##           546        0     0     0     0     0     0     0     0     0
##           547        0     0     0     0     0     0     0     0     0
##           548        0     0     0     0     0     0     0     0     0
##           549        0     0     0     0     0     0     0     0     0
##           550        0     0     0     0     0     0     0     0     0
##           552        0     0     0     0     0     0     0     0     0
##           553        0     0     0     0     0     0     0     0     0
##           555        0     0     0     0     0     0     0     0     0
##           556        0     0     0     0     0     0     0     0     0
##           557        0     0     0     0     0     0     0     0     0
##           558        0     0     0     0     0     0     0     0     0
##           559        0     0     0     0     0     0     0     0     0
##           560        0     0     0     0     0     0     0     0     0
##                 
## filteredTestPred 15000 16300 16700 17000 17100 17700 18000 18200 18600
##           4          0     0     0     0     0     0     0     0     0
##           23         0     0     0     0     0     0     0     0     0
##           41         0     0     0     0     0     0     0     0     0
##           45         0     0     0     0     0     0     0     0     0
##           47         0     0     0     0     0     0     0     0     0
##           48         0     0     0     0     0     0     0     0     0
##           51         0     0     0     0     0     0     0     0     0
##           60         0     0     0     0     0     0     0     0     0
##           64         0     0     0     0     0     0     0     0     0
##           66         0     0     0     0     0     0     0     0     0
##           70         0     0     0     0     0     0     0     0     0
##           80         0     0     0     0     0     0     0     0     0
##           82         0     0     0     0     0     0     0     0     0
##           84         0     0     0     0     0     0     0     0     0
##           86         0     0     0     0     0     0     0     0     0
##           87         0     0     0     0     0     0     0     0     0
##           88         0     0     0     0     0     0     0     0     0
##           90         0     0     0     0     0     0     0     0     0
##           91         0     0     0     0     0     0     0     0     0
##           95         0     0     0     0     0     0     0     0     0
##           97         0     0     0     0     0     0     0     0     0
##           98         0     0     0     0     0     0     0     0     0
##           99         0     0     0     0     0     0     0     0     0
##           102        0     0     0     0     0     0     0     0     0
##           106        0     0     0     0     0     0     0     0     0
##           109        0     0     0     0     0     0     0     0     0
##           111        0     0     0     0     0     0     0     0     0
##           116        0     0     0     0     0     0     0     0     0
##           119        0     0     0     0     0     0     0     0     0
##           123        0     0     0     0     0     0     0     0     0
##           127        0     0     0     0     0     0     0     0     0
##           129        0     0     0     0     0     0     0     0     0
##           130        0     0     0     0     0     0     0     0     0
##           134        0     0     0     0     0     0     0     0     0
##           135        0     0     0     0     0     0     0     0     0
##           137        0     0     0     0     0     0     0     0     0
##           138        0     0     0     0     0     0     0     0     0
##           140        0     0     0     0     0     0     0     0     0
##           141        0     0     0     0     0     0     0     0     0
##           143        0     0     0     0     0     0     0     0     0
##           144        0     0     0     0     0     0     0     0     0
##           146        0     0     0     0     0     0     0     0     0
##           149        0     0     0     0     0     0     0     0     0
##           150        0     0     0     0     0     0     0     0     0
##           151        0     0     0     0     0     0     0     0     0
##           154        0     0     0     0     0     0     0     0     0
##           158        0     0     0     0     0     0     0     0     0
##           160        0     0     0     0     0     0     0     0     0
##           162        0     0     0     0     0     0     0     0     0
##           163        0     0     0     0     0     0     0     0     0
##           168        0     0     0     0     0     0     0     0     0
##           176        0     0     0     0     0     0     0     0     0
##           178        0     0     0     0     0     0     0     0     0
##           180        0     0     0     0     0     0     0     0     0
##           181        0     0     0     0     0     0     0     0     0
##           183        0     0     0     0     0     0     0     0     0
##           186        0     0     0     0     0     0     0     0     0
##           190        0     0     0     0     0     0     0     0     0
##           191        0     0     0     0     0     0     0     0     0
##           192        0     0     0     0     0     0     0     0     0
##           196        0     0     0     0     0     0     0     0     0
##           201        0     0     0     0     0     0     0     0     0
##           202        0     0     0     0     0     0     0     0     0
##           205        0     0     0     0     0     0     0     0     0
##           206        0     0     0     0     0     0     0     0     0
##           211        0     0     0     0     0     0     0     0     0
##           213        0     0     0     0     0     0     0     0     0
##           215        0     0     0     0     0     0     0     0     0
##           217        0     0     0     0     0     0     0     0     0
##           218        0     0     0     0     0     0     0     0     0
##           221        0     0     0     0     0     0     0     0     0
##           223        0     0     0     0     0     0     0     0     0
##           224        0     0     0     0     0     0     0     0     0
##           226        0     0     0     0     0     0     0     0     0
##           228        0     0     0     0     0     0     0     0     0
##           233        0     0     0     0     0     0     0     0     0
##           236        0     0     0     0     0     0     0     0     0
##           237        0     0     0     0     0     0     0     0     0
##           238        0     0     0     0     0     0     0     0     0
##           240        0     0     0     0     0     0     0     0     0
##           241        0     0     0     0     0     0     0     0     0
##           245        0     0     0     0     0     0     0     0     0
##           246        0     0     0     0     0     0     0     0     0
##           248        0     0     0     0     0     0     0     0     0
##           250        0     0     0     0     0     0     0     0     0
##           251        0     0     0     0     0     0     0     0     0
##           256        0     0     0     0     0     0     0     0     0
##           258        0     0     0     0     0     0     0     0     0
##           261        0     0     0     0     0     0     0     0     0
##           262        0     0     0     0     0     0     0     0     0
##           264        0     0     0     0     0     0     0     0     0
##           266        0     0     0     0     0     0     0     0     0
##           268        0     0     0     0     0     0     0     0     0
##           269        0     0     0     0     0     0     0     0     0
##           277        0     0     0     0     0     0     0     0     0
##           278        0     0     0     0     0     0     0     0     0
##           279        0     0     0     0     0     0     0     0     0
##           280        0     0     0     0     0     0     0     0     0
##           285        0     0     0     0     0     0     0     0     0
##           286        0     0     0     0     0     0     0     0     0
##           287        0     0     0     0     0     0     0     0     0
##           292        0     0     0     0     0     0     0     0     0
##           294        0     0     0     0     0     0     0     0     0
##           295        0     0     0     0     0     0     0     0     0
##           296        0     0     0     0     0     0     0     0     0
##           300        0     0     0     0     0     0     0     0     0
##           301        0     0     0     0     0     0     0     0     0
##           302        0     0     0     0     0     0     0     0     0
##           305        0     0     0     0     0     0     0     0     0
##           308        0     0     0     0     0     0     0     0     0
##           309        0     0     0     0     0     0     0     0     0
##           313        0     0     0     0     0     0     0     0     0
##           317        0     0     0     0     0     0     0     0     0
##           318        0     0     0     0     0     0     0     0     0
##           321        0     0     0     0     0     0     0     0     0
##           322        0     0     0     0     0     0     0     0     0
##           324        0     0     0     0     0     0     0     0     0
##           325        0     0     0     0     0     0     0     0     0
##           326        0     0     0     0     0     0     0     0     0
##           331        0     0     0     0     0     0     0     0     0
##           336        0     0     0     0     0     0     0     0     0
##           339        0     0     0     0     0     0     0     0     0
##           340        0     0     0     0     0     0     0     0     0
##           341        0     0     0     0     0     0     0     0     0
##           342        0     0     0     0     0     0     0     0     0
##           343        0     0     0     0     0     0     0     0     0
##           346        0     0     0     0     0     0     0     0     0
##           348        0     0     0     0     0     0     0     0     0
##           349        0     0     0     0     0     0     0     0     0
##           350        0     0     0     0     0     0     0     0     0
##           354        0     0     0     0     0     0     0     0     0
##           356        0     0     0     0     0     0     0     0     0
##           357        0     0     0     0     0     0     0     0     0
##           358        0     0     0     0     0     0     0     0     0
##           365        0     0     0     0     0     0     0     0     0
##           366        0     0     0     0     0     0     0     0     0
##           368        0     0     0     0     0     0     0     0     0
##           369        0     0     0     0     0     0     0     0     0
##           371        0     0     0     0     0     0     0     0     0
##           373        0     0     0     0     0     0     0     0     0
##           375        0     0     0     0     0     0     0     0     0
##           377        0     0     0     0     0     0     0     0     0
##           378        0     0     0     0     0     0     0     0     0
##           379        0     0     0     0     0     0     0     0     0
##           380        0     0     0     0     0     0     0     0     0
##           381        0     0     0     0     0     0     0     0     0
##           382        0     0     0     0     0     0     0     0     0
##           383        0     0     0     0     0     0     0     0     0
##           384        0     0     0     0     0     0     0     0     0
##           386        0     0     0     0     0     0     0     0     0
##           387        0     0     0     0     0     0     0     0     0
##           390        0     0     0     0     0     0     0     0     0
##           391        0     0     0     0     0     0     0     0     0
##           392        0     0     0     0     0     0     0     0     0
##           393        0     0     0     0     0     0     0     0     0
##           395        0     0     0     0     0     0     0     0     0
##           396        0     0     0     0     0     0     0     0     0
##           397        0     0     0     0     0     0     0     0     0
##           398        0     0     0     0     0     0     0     0     0
##           399        0     0     0     0     0     0     0     0     0
##           400        0     0     0     0     0     0     0     0     0
##           401        0     0     0     0     0     0     0     0     0
##           402        0     0     0     0     0     0     0     0     0
##           403        0     0     0     0     0     0     0     0     0
##           404        0     0     0     0     0     0     0     0     0
##           407        0     0     0     0     0     0     0     0     0
##           408        0     0     0     0     0     0     0     0     0
##           410        0     0     0     0     0     0     0     0     0
##           411        0     0     0     0     0     0     0     0     0
##           412        0     0     0     0     0     0     0     0     0
##           413        0     0     0     0     0     0     0     0     0
##           414        0     0     0     0     0     0     0     0     0
##           416        0     0     0     0     0     0     0     0     0
##           417        0     0     0     0     0     0     0     0     0
##           419        0     0     0     0     0     0     0     0     0
##           420        0     0     0     0     0     0     0     0     0
##           421        0     0     0     0     0     0     0     0     0
##           422        0     0     0     0     0     0     0     0     0
##           423        0     0     0     0     0     0     0     0     0
##           424        0     0     0     0     0     0     0     0     0
##           425        0     0     0     0     0     0     0     0     0
##           426        0     0     0     0     0     0     0     0     0
##           427        0     0     0     0     0     0     0     0     0
##           428        0     0     0     0     0     0     0     0     0
##           429        0     0     0     0     0     0     0     0     0
##           430        0     0     0     0     0     0     0     0     0
##           431        0     0     0     0     0     0     0     0     0
##           432        0     0     0     0     0     0     0     0     0
##           434        0     0     0     0     0     0     0     0     0
##           435        0     0     0     0     0     0     0     0     0
##           436        0     0     0     0     0     0     0     0     0
##           437        0     0     0     0     0     0     0     0     0
##           438        0     0     0     0     0     0     0     0     0
##           440        0     0     0     0     0     0     0     0     0
##           441        0     0     0     0     0     0     0     0     0
##           444        0     0     0     0     0     0     0     0     0
##           445        0     0     0     0     0     0     0     0     0
##           446        0     0     0     0     0     0     0     0     0
##           447        0     0     0     0     0     0     0     0     0
##           448        0     0     0     0     0     0     0     0     0
##           449        0     0     0     0     0     0     0     0     0
##           450        0     0     0     0     0     0     0     0     0
##           451        0     0     0     0     0     0     0     0     0
##           452        0     0     0     0     0     0     0     0     0
##           454        0     0     0     0     0     0     0     0     0
##           455        0     0     0     0     0     0     0     0     0
##           456        0     0     0     0     0     0     0     0     0
##           458        0     0     0     0     0     0     0     0     0
##           459        0     0     0     0     0     0     0     0     0
##           460        0     0     0     0     0     0     0     0     0
##           461        0     0     0     0     0     0     0     0     0
##           462        0     0     0     0     0     0     0     0     0
##           463        0     0     0     0     0     0     0     0     0
##           464        0     0     0     0     0     0     0     0     0
##           465        0     0     0     0     0     0     0     0     0
##           466        0     0     0     0     0     0     0     0     0
##           467        0     0     0     0     0     0     0     0     0
##           468        0     0     0     0     0     0     0     0     0
##           469        0     0     0     0     0     0     0     0     0
##           471        0     0     0     0     0     0     0     0     0
##           472        0     0     0     0     0     0     0     0     0
##           473        0     0     0     0     0     0     0     0     0
##           474        0     0     0     0     0     0     0     0     0
##           475        0     0     0     0     0     0     0     0     0
##           476        0     0     0     0     0     0     0     0     0
##           477        0     0     0     0     0     0     0     0     0
##           478        0     0     0     0     0     0     0     0     0
##           480        0     0     0     0     0     0     0     0     0
##           482        0     0     0     0     0     0     0     0     0
##           483        0     0     0     0     0     0     0     0     0
##           484        0     0     0     0     0     0     0     0     0
##           485        0     0     0     0     0     0     0     0     0
##           486        0     0     0     0     0     0     0     0     0
##           488        0     0     0     0     0     0     0     0     0
##           489        0     0     0     0     0     0     0     0     0
##           490        0     0     0     0     0     0     0     0     0
##           492        0     0     0     0     0     0     0     0     0
##           493        0     0     0     0     0     0     0     0     0
##           494        0     0     0     0     0     0     0     0     0
##           495        0     0     0     0     0     0     0     0     0
##           496        0     0     0     0     0     0     0     0     0
##           497        0     0     0     0     0     0     0     0     0
##           498        0     0     0     0     0     0     0     0     0
##           500        0     0     0     0     0     0     0     0     0
##           501        0     0     0     0     0     0     0     0     0
##           502        0     0     0     0     0     0     0     0     0
##           503        0     0     0     0     0     0     0     0     0
##           504        0     0     0     0     0     0     0     0     0
##           505        0     0     0     0     0     0     0     0     0
##           506        0     0     0     0     0     0     0     0     0
##           507        0     0     0     0     0     0     0     0     0
##           508        0     0     0     0     0     0     0     0     0
##           510        0     0     0     0     0     0     0     0     0
##           511        0     0     0     0     0     0     0     0     0
##           512        0     0     0     0     0     0     0     0     0
##           513        0     0     0     0     0     0     0     0     0
##           514        0     0     0     0     0     0     0     0     0
##           515        0     0     0     0     0     0     0     0     0
##           516        0     0     0     0     0     0     0     0     0
##           517        0     0     0     0     0     0     0     0     0
##           518        0     0     0     0     0     0     0     0     0
##           519        0     0     0     0     0     0     0     0     0
##           520        0     0     0     0     0     0     0     0     0
##           521        0     0     0     0     0     0     0     0     0
##           522        0     0     0     0     0     0     0     0     0
##           523        0     0     0     0     0     0     0     0     0
##           525        0     0     0     0     0     0     0     0     0
##           526        0     0     0     0     0     0     0     0     0
##           527        0     0     0     0     0     0     0     0     0
##           528        0     0     0     0     0     0     0     0     0
##           529        0     0     0     0     0     0     0     0     0
##           530        0     0     0     0     0     0     0     0     0
##           531        0     0     0     0     0     0     0     0     0
##           532        0     0     0     0     0     0     0     0     0
##           533        0     0     0     0     0     0     0     0     0
##           534        0     0     0     0     0     0     0     0     0
##           535        0     0     0     0     0     0     0     0     0
##           536        0     0     0     0     0     0     0     0     0
##           537        0     0     0     0     0     0     0     0     0
##           538        0     0     0     0     0     0     0     0     0
##           539        0     0     0     0     0     0     0     0     0
##           541        0     0     0     0     0     0     0     0     0
##           542        0     0     0     0     0     0     0     0     0
##           544        0     0     0     0     0     0     0     0     0
##           545        0     0     0     0     0     0     0     0     0
##           546        0     0     0     0     0     0     0     0     0
##           547        0     0     0     0     0     0     0     0     0
##           548        0     0     0     0     0     0     0     0     0
##           549        0     0     0     0     0     0     0     0     0
##           550        0     0     0     0     0     0     0     0     0
##           552        0     0     0     0     0     0     0     0     0
##           553        0     0     0     0     0     0     0     0     0
##           555        0     0     0     0     0     0     0     0     0
##           556        0     0     0     0     0     0     0     0     0
##           557        0     0     0     0     0     0     0     0     0
##           558        0     0     0     0     0     0     0     0     0
##           559        0     0     0     0     0     0     0     0     0
##           560        0     0     0     0     0     0     0     0     0
##                 
## filteredTestPred 18800 20000 20200 20400 21800 26600 26800 28000 28400
##           4          0     0     0     0     0     0     0     0     0
##           23         0     0     0     0     0     0     0     0     0
##           41         0     0     0     0     0     0     0     0     0
##           45         0     0     0     0     0     0     0     0     0
##           47         0     0     0     0     0     0     0     0     0
##           48         0     0     0     0     0     0     0     0     0
##           51         0     0     0     0     0     0     0     0     0
##           60         0     0     0     0     0     0     0     0     0
##           64         0     0     0     0     0     0     0     0     0
##           66         0     0     0     0     0     0     0     0     0
##           70         0     0     0     0     0     0     0     0     0
##           80         0     0     0     0     0     0     0     0     0
##           82         0     0     0     0     0     0     0     0     0
##           84         0     0     0     0     0     0     0     0     0
##           86         0     0     0     0     0     0     0     0     0
##           87         0     0     0     0     0     0     0     0     0
##           88         0     0     0     0     0     0     0     0     0
##           90         0     0     0     0     0     0     0     0     0
##           91         0     0     0     0     0     0     0     0     0
##           95         0     0     0     0     0     0     0     0     0
##           97         0     0     0     0     0     0     0     0     0
##           98         0     0     0     0     0     0     0     0     0
##           99         0     0     0     0     0     0     0     0     0
##           102        0     0     0     0     0     0     0     0     0
##           106        0     0     0     0     0     0     0     0     0
##           109        0     0     0     0     0     0     0     0     0
##           111        0     0     0     0     0     0     0     0     0
##           116        0     0     0     0     0     0     0     0     0
##           119        0     0     0     0     0     0     0     0     0
##           123        0     0     0     0     0     0     0     0     0
##           127        0     0     0     0     0     0     0     0     0
##           129        0     0     0     0     0     0     0     0     0
##           130        0     0     0     0     0     0     0     0     0
##           134        0     0     0     0     0     0     0     0     0
##           135        0     0     0     0     0     0     0     0     0
##           137        0     0     0     0     0     0     0     0     0
##           138        0     0     0     0     0     0     0     0     0
##           140        0     0     0     0     0     0     0     0     0
##           141        0     0     0     0     0     0     0     0     0
##           143        0     0     0     0     0     0     0     0     0
##           144        0     0     0     0     0     0     0     0     0
##           146        0     0     0     0     0     0     0     0     0
##           149        0     0     0     0     0     0     0     0     0
##           150        0     0     0     0     0     0     0     0     0
##           151        0     0     0     0     0     0     0     0     0
##           154        0     0     0     0     0     0     0     0     0
##           158        0     0     0     0     0     0     0     0     0
##           160        0     0     0     0     0     0     0     0     0
##           162        0     0     0     0     0     0     0     0     0
##           163        0     0     0     0     0     0     0     0     0
##           168        0     0     0     0     0     0     0     0     0
##           176        0     0     0     0     0     0     0     0     0
##           178        0     0     0     0     0     0     0     0     0
##           180        0     0     0     0     0     0     0     0     0
##           181        0     0     0     0     0     0     0     0     0
##           183        0     0     0     0     0     0     0     0     0
##           186        0     0     0     0     0     0     0     0     0
##           190        0     0     0     0     0     0     0     0     0
##           191        0     0     0     0     0     0     0     0     0
##           192        0     0     0     0     0     0     0     0     0
##           196        0     0     0     0     0     0     0     0     0
##           201        0     0     0     0     0     0     0     0     0
##           202        0     0     0     0     0     0     0     0     0
##           205        0     0     0     0     0     0     0     0     0
##           206        0     0     0     0     0     0     0     0     0
##           211        0     0     0     0     0     0     0     0     0
##           213        0     0     0     0     0     0     0     0     0
##           215        0     0     0     0     0     0     0     0     0
##           217        0     0     0     0     0     0     0     0     0
##           218        0     0     0     0     0     0     0     0     0
##           221        0     0     0     0     0     0     0     0     0
##           223        0     0     0     0     0     0     0     0     0
##           224        0     0     0     0     0     0     0     0     0
##           226        0     0     0     0     0     0     0     0     0
##           228        0     0     0     0     0     0     0     0     0
##           233        0     0     0     0     0     0     0     0     0
##           236        0     0     0     0     0     0     0     0     0
##           237        0     0     0     0     0     0     0     0     0
##           238        0     0     0     0     0     0     0     0     0
##           240        0     0     0     0     0     0     0     0     0
##           241        0     0     0     0     0     0     0     0     0
##           245        0     0     0     0     0     0     0     0     0
##           246        0     0     0     0     0     0     0     0     0
##           248        0     0     0     0     0     0     0     0     0
##           250        0     0     0     0     0     0     0     0     0
##           251        0     0     0     0     0     0     0     0     0
##           256        0     0     0     0     0     0     0     0     0
##           258        0     0     0     0     0     0     0     0     0
##           261        0     0     0     0     0     0     0     0     0
##           262        0     0     0     0     0     0     0     0     0
##           264        0     0     0     0     0     0     0     0     0
##           266        0     0     0     0     0     0     0     0     0
##           268        0     0     0     0     0     0     0     0     0
##           269        0     0     0     0     0     0     0     0     0
##           277        0     0     0     0     0     0     0     0     0
##           278        0     0     0     0     0     0     0     0     0
##           279        0     0     0     0     0     0     0     0     0
##           280        0     0     0     0     0     0     0     0     0
##           285        0     0     0     0     0     0     0     0     0
##           286        0     0     0     0     0     0     0     0     0
##           287        0     0     0     0     0     0     0     0     0
##           292        0     0     0     0     0     0     0     0     0
##           294        0     0     0     0     0     0     0     0     0
##           295        0     0     0     0     0     0     0     0     0
##           296        0     0     0     0     0     0     0     0     0
##           300        0     0     0     0     0     0     0     0     0
##           301        0     0     0     0     0     0     0     0     0
##           302        0     0     0     0     0     0     0     0     0
##           305        0     0     0     0     0     0     0     0     0
##           308        0     0     0     0     0     0     0     0     0
##           309        0     0     0     0     0     0     0     0     0
##           313        0     0     0     0     0     0     0     0     0
##           317        0     0     0     0     0     0     0     0     0
##           318        0     0     0     0     0     0     0     0     0
##           321        0     0     0     0     0     0     0     0     0
##           322        0     0     0     0     0     0     0     0     0
##           324        0     0     0     0     0     0     0     0     0
##           325        0     0     0     0     0     0     0     0     0
##           326        0     0     0     0     0     0     0     0     0
##           331        0     0     0     0     0     0     0     0     0
##           336        0     0     0     0     0     0     0     0     0
##           339        0     0     0     0     0     0     0     0     0
##           340        0     0     0     0     0     0     0     0     0
##           341        0     0     0     0     0     0     0     0     0
##           342        0     0     0     0     0     0     0     0     0
##           343        0     0     0     0     0     0     0     0     0
##           346        0     0     0     0     0     0     0     0     0
##           348        0     0     0     0     0     0     0     0     0
##           349        0     0     0     0     0     0     0     0     0
##           350        0     0     0     0     0     0     0     0     0
##           354        0     0     0     0     0     0     0     0     0
##           356        0     0     0     0     0     0     0     0     0
##           357        0     0     0     0     0     0     0     0     0
##           358        0     0     0     0     0     0     0     0     0
##           365        0     0     0     0     0     0     0     0     0
##           366        0     0     0     0     0     0     0     0     0
##           368        0     0     0     0     0     0     0     0     0
##           369        0     0     0     0     0     0     0     0     0
##           371        0     0     0     0     0     0     0     0     0
##           373        0     0     0     0     0     0     0     0     0
##           375        0     0     0     0     0     0     0     0     0
##           377        0     0     0     0     0     0     0     0     0
##           378        0     0     0     0     0     0     0     0     0
##           379        0     0     0     0     0     0     0     0     0
##           380        0     0     0     0     0     0     0     0     0
##           381        0     0     0     0     0     0     0     0     0
##           382        0     0     0     0     0     0     0     0     0
##           383        0     0     0     0     0     0     0     0     0
##           384        0     0     0     0     0     0     0     0     0
##           386        0     0     0     0     0     0     0     0     0
##           387        0     0     0     0     0     0     0     0     0
##           390        0     0     0     0     0     0     0     0     0
##           391        0     0     0     0     0     0     0     0     0
##           392        0     0     0     0     0     0     0     0     0
##           393        0     0     0     0     0     0     0     0     0
##           395        0     0     0     0     0     0     0     0     0
##           396        0     0     0     0     0     0     0     0     0
##           397        0     0     0     0     0     0     0     0     0
##           398        0     0     0     0     0     0     0     0     0
##           399        0     0     0     0     0     0     0     0     0
##           400        0     0     0     0     0     0     0     0     0
##           401        0     0     0     0     0     0     0     0     0
##           402        0     0     0     0     0     0     0     0     0
##           403        0     0     0     0     0     0     0     0     0
##           404        0     0     0     0     0     0     0     0     0
##           407        0     0     0     0     0     0     0     0     0
##           408        0     0     0     0     0     0     0     0     0
##           410        0     0     0     0     0     0     0     0     0
##           411        0     0     0     0     0     0     0     0     0
##           412        0     0     0     0     0     0     0     0     0
##           413        0     0     0     0     0     0     0     0     0
##           414        0     0     0     0     0     0     0     0     0
##           416        0     0     0     0     0     0     0     0     0
##           417        0     0     0     0     0     0     0     0     0
##           419        0     0     0     0     0     0     0     0     0
##           420        0     0     0     0     0     0     0     0     0
##           421        0     0     0     0     0     0     0     0     0
##           422        0     0     0     0     0     0     0     0     0
##           423        0     0     0     0     0     0     0     0     0
##           424        0     0     0     0     0     0     0     0     0
##           425        0     0     0     0     0     0     0     0     0
##           426        0     0     0     0     0     0     0     0     0
##           427        0     0     0     0     0     0     0     0     0
##           428        0     0     0     0     0     0     0     0     0
##           429        0     0     0     0     0     0     0     0     0
##           430        0     0     0     0     0     0     0     0     0
##           431        0     0     0     0     0     0     0     0     0
##           432        0     0     0     0     0     0     0     0     0
##           434        0     0     0     0     0     0     0     0     0
##           435        0     0     0     0     0     0     0     0     0
##           436        0     0     0     0     0     0     0     0     0
##           437        0     0     0     0     0     0     0     0     0
##           438        0     0     0     0     0     0     0     0     0
##           440        0     0     0     0     0     0     0     0     0
##           441        0     0     0     0     0     0     0     0     0
##           444        0     0     0     0     0     0     0     0     0
##           445        0     0     0     0     0     0     0     0     0
##           446        0     0     0     0     0     0     0     0     0
##           447        0     0     0     0     0     0     0     0     0
##           448        0     0     0     0     0     0     0     0     0
##           449        0     0     0     0     0     0     0     0     0
##           450        0     0     0     0     0     0     0     0     0
##           451        0     0     0     0     0     0     0     0     0
##           452        0     0     0     0     0     0     0     0     0
##           454        0     0     0     0     0     0     0     0     0
##           455        0     0     0     0     0     0     0     0     0
##           456        0     0     0     0     0     0     0     0     0
##           458        0     0     0     0     0     0     0     0     0
##           459        0     0     0     0     0     0     0     0     0
##           460        0     0     0     0     0     0     0     0     0
##           461        0     0     0     0     0     0     0     0     0
##           462        0     0     0     0     0     0     0     0     0
##           463        0     0     0     0     0     0     0     0     0
##           464        0     0     0     0     0     0     0     0     0
##           465        0     0     0     0     0     0     0     0     0
##           466        0     0     0     0     0     0     0     0     0
##           467        0     0     0     0     0     0     0     0     0
##           468        0     0     0     0     0     0     0     0     0
##           469        0     0     0     0     0     0     0     0     0
##           471        0     0     0     0     0     0     0     0     0
##           472        0     0     0     0     0     0     0     0     0
##           473        0     0     0     0     0     0     0     0     0
##           474        0     0     0     0     0     0     0     0     0
##           475        0     0     0     0     0     0     0     0     0
##           476        0     0     0     0     0     0     0     0     0
##           477        0     0     0     0     0     0     0     0     0
##           478        0     0     0     0     0     0     0     0     0
##           480        0     0     0     0     0     0     0     0     0
##           482        0     0     0     0     0     0     0     0     0
##           483        0     0     0     0     0     0     0     0     0
##           484        0     0     0     0     0     0     0     0     0
##           485        0     0     0     0     0     0     0     0     0
##           486        0     0     0     0     0     0     0     0     0
##           488        0     0     0     0     0     0     0     0     0
##           489        0     0     0     0     0     0     0     0     0
##           490        0     0     0     0     0     0     0     0     0
##           492        0     0     0     0     0     0     0     0     0
##           493        0     0     0     0     0     0     0     0     0
##           494        0     0     0     0     0     0     0     0     0
##           495        0     0     0     0     0     0     0     0     0
##           496        0     0     0     0     0     0     0     0     0
##           497        0     0     0     0     0     0     0     0     0
##           498        0     0     0     0     0     0     0     0     0
##           500        0     0     0     0     0     0     0     0     0
##           501        0     0     0     0     0     0     0     0     0
##           502        0     0     0     0     0     0     0     0     0
##           503        0     0     0     0     0     0     0     0     0
##           504        0     0     0     0     0     0     0     0     0
##           505        0     0     0     0     0     0     0     0     0
##           506        0     0     0     0     0     0     0     0     0
##           507        0     0     0     0     0     0     0     0     0
##           508        0     0     0     0     0     0     0     0     0
##           510        0     0     0     0     0     0     0     0     0
##           511        0     0     0     0     0     0     0     0     0
##           512        0     0     0     0     0     0     0     0     0
##           513        0     0     0     0     0     0     0     0     0
##           514        0     0     0     0     0     0     0     0     0
##           515        0     0     0     0     0     0     0     0     0
##           516        0     0     0     0     0     0     0     0     0
##           517        0     0     0     0     0     0     0     0     0
##           518        0     0     0     0     0     0     0     0     0
##           519        0     0     0     0     0     0     0     0     0
##           520        0     0     0     0     0     0     0     0     0
##           521        0     0     0     0     0     0     0     0     0
##           522        0     0     0     0     0     0     0     0     0
##           523        0     0     0     0     0     0     0     0     0
##           525        0     0     0     0     0     0     0     0     0
##           526        0     0     0     0     0     0     0     0     0
##           527        0     0     0     0     0     0     0     0     0
##           528        0     0     0     0     0     0     0     0     0
##           529        0     0     0     0     0     0     0     0     0
##           530        0     0     0     0     0     0     0     0     0
##           531        0     0     0     0     0     0     0     0     0
##           532        0     0     0     0     0     0     0     0     0
##           533        0     0     0     0     0     0     0     0     0
##           534        0     0     0     0     0     0     0     0     0
##           535        0     0     0     0     0     0     0     0     0
##           536        0     0     0     0     0     0     0     0     0
##           537        0     0     0     0     0     0     0     0     0
##           538        0     0     0     0     0     0     0     0     0
##           539        0     0     0     0     0     0     0     0     0
##           541        0     0     0     0     0     0     0     0     0
##           542        0     0     0     0     0     0     0     0     0
##           544        0     0     0     0     0     0     0     0     0
##           545        0     0     0     0     0     0     0     0     0
##           546        0     0     0     0     0     0     0     0     0
##           547        0     0     0     0     0     0     0     0     0
##           548        0     0     0     0     0     0     0     0     0
##           549        0     0     0     0     0     0     0     0     0
##           550        0     0     0     0     0     0     0     0     0
##           552        0     0     0     0     0     0     0     0     0
##           553        0     0     0     0     0     0     0     0     0
##           555        0     0     0     0     0     0     0     0     0
##           556        0     0     0     0     0     0     0     0     0
##           557        0     0     0     0     0     0     0     0     0
##           558        0     0     0     0     0     0     0     0     0
##           559        0     0     0     0     0     0     0     0     0
##           560        0     0     0     0     0     0     0     0     0
##                 
## filteredTestPred 30400 31300 31500 36500 42700 56000 59000 66900 67500
##           4          0     0     0     0     0     0     0     0     0
##           23         0     0     0     0     0     0     0     0     0
##           41         0     0     0     0     0     0     0     0     0
##           45         0     0     0     0     0     0     0     0     0
##           47         0     0     0     0     0     0     0     0     0
##           48         0     0     0     0     0     0     0     0     0
##           51         0     0     0     0     0     0     0     0     0
##           60         0     0     0     0     0     0     0     0     0
##           64         0     0     0     0     0     0     0     0     0
##           66         0     0     0     0     0     0     0     0     0
##           70         0     0     0     0     0     0     0     0     0
##           80         0     0     0     0     0     0     0     0     0
##           82         0     0     0     0     0     0     0     0     0
##           84         0     0     0     0     0     0     0     0     0
##           86         0     0     0     0     0     0     0     0     0
##           87         0     0     0     0     0     0     0     0     0
##           88         0     0     0     0     0     0     0     0     0
##           90         0     0     0     0     0     0     0     0     0
##           91         0     0     0     0     0     0     0     0     0
##           95         0     0     0     0     0     0     0     0     0
##           97         0     0     0     0     0     0     0     0     0
##           98         0     0     0     0     0     0     0     0     0
##           99         0     0     0     0     0     0     0     0     0
##           102        0     0     0     0     0     0     0     0     0
##           106        0     0     0     0     0     0     0     0     0
##           109        0     0     0     0     0     0     0     0     0
##           111        0     0     0     0     0     0     0     0     0
##           116        0     0     0     0     0     0     0     0     0
##           119        0     0     0     0     0     0     0     0     0
##           123        0     0     0     0     0     0     0     0     0
##           127        0     0     0     0     0     0     0     0     0
##           129        0     0     0     0     0     0     0     0     0
##           130        0     0     0     0     0     0     0     0     0
##           134        0     0     0     0     0     0     0     0     0
##           135        0     0     0     0     0     0     0     0     0
##           137        0     0     0     0     0     0     0     0     0
##           138        0     0     0     0     0     0     0     0     0
##           140        0     0     0     0     0     0     0     0     0
##           141        0     0     0     0     0     0     0     0     0
##           143        0     0     0     0     0     0     0     0     0
##           144        0     0     0     0     0     0     0     0     0
##           146        0     0     0     0     0     0     0     0     0
##           149        0     0     0     0     0     0     0     0     0
##           150        0     0     0     0     0     0     0     0     0
##           151        0     0     0     0     0     0     0     0     0
##           154        0     0     0     0     0     0     0     0     0
##           158        0     0     0     0     0     0     0     0     0
##           160        0     0     0     0     0     0     0     0     0
##           162        0     0     0     0     0     0     0     0     0
##           163        0     0     0     0     0     0     0     0     0
##           168        0     0     0     0     0     0     0     0     0
##           176        0     0     0     0     0     0     0     0     0
##           178        0     0     0     0     0     0     0     0     0
##           180        0     0     0     0     0     0     0     0     0
##           181        0     0     0     0     0     0     0     0     0
##           183        0     0     0     0     0     0     0     0     0
##           186        0     0     0     0     0     0     0     0     0
##           190        0     0     0     0     0     0     0     0     0
##           191        0     0     0     0     0     0     0     0     0
##           192        0     0     0     0     0     0     0     0     0
##           196        0     0     0     0     0     0     0     0     0
##           201        0     0     0     0     0     0     0     0     0
##           202        0     0     0     0     0     0     0     0     0
##           205        0     0     0     0     0     0     0     0     0
##           206        0     0     0     0     0     0     0     0     0
##           211        0     0     0     0     0     0     0     0     0
##           213        0     0     0     0     0     0     0     0     0
##           215        0     0     0     0     0     0     0     0     0
##           217        0     0     0     0     0     0     0     0     0
##           218        0     0     0     0     0     0     0     0     0
##           221        0     0     0     0     0     0     0     0     0
##           223        0     0     0     0     0     0     0     0     0
##           224        0     0     0     0     0     0     0     0     0
##           226        0     0     0     0     0     0     0     0     0
##           228        0     0     0     0     0     0     0     0     0
##           233        0     0     0     0     0     0     0     0     0
##           236        0     0     0     0     0     0     0     0     0
##           237        0     0     0     0     0     0     0     0     0
##           238        0     0     0     0     0     0     0     0     0
##           240        0     0     0     0     0     0     0     0     0
##           241        0     0     0     0     0     0     0     0     0
##           245        0     0     0     0     0     0     0     0     0
##           246        0     0     0     0     0     0     0     0     0
##           248        0     0     0     0     0     0     0     0     0
##           250        0     0     0     0     0     0     0     0     0
##           251        0     0     0     0     0     0     0     0     0
##           256        0     0     0     0     0     0     0     0     0
##           258        0     0     0     0     0     0     0     0     0
##           261        0     0     0     0     0     0     0     0     0
##           262        0     0     0     0     0     0     0     0     0
##           264        0     0     0     0     0     0     0     0     0
##           266        0     0     0     0     0     0     0     0     0
##           268        0     0     0     0     0     0     0     0     0
##           269        0     0     0     0     0     0     0     0     0
##           277        0     0     0     0     0     0     0     0     0
##           278        0     0     0     0     0     0     0     0     0
##           279        0     0     0     0     0     0     0     0     0
##           280        0     0     0     0     0     0     0     0     0
##           285        0     0     0     0     0     0     0     0     0
##           286        0     0     0     0     0     0     0     0     0
##           287        0     0     0     0     0     0     0     0     0
##           292        0     0     0     0     0     0     0     0     0
##           294        0     0     0     0     0     0     0     0     0
##           295        0     0     0     0     0     0     0     0     0
##           296        0     0     0     0     0     0     0     0     0
##           300        0     0     0     0     0     0     0     0     0
##           301        0     0     0     0     0     0     0     0     0
##           302        0     0     0     0     0     0     0     0     0
##           305        0     0     0     0     0     0     0     0     0
##           308        0     0     0     0     0     0     0     0     0
##           309        0     0     0     0     0     0     0     0     0
##           313        0     0     0     0     0     0     0     0     0
##           317        0     0     0     0     0     0     0     0     0
##           318        0     0     0     0     0     0     0     0     0
##           321        0     0     0     0     0     0     0     0     0
##           322        0     0     0     0     0     0     0     0     0
##           324        0     0     0     0     0     0     0     0     0
##           325        0     0     0     0     0     0     0     0     0
##           326        0     0     0     0     0     0     0     0     0
##           331        0     0     0     0     0     0     0     0     0
##           336        0     0     0     0     0     0     0     0     0
##           339        0     0     0     0     0     0     0     0     0
##           340        0     0     0     0     0     0     0     0     0
##           341        0     0     0     0     0     0     0     0     0
##           342        0     0     0     0     0     0     0     0     0
##           343        0     0     0     0     0     0     0     0     0
##           346        0     0     0     0     0     0     0     0     0
##           348        0     0     0     0     0     0     0     0     0
##           349        0     0     0     0     0     0     0     0     0
##           350        0     0     0     0     0     0     0     0     0
##           354        0     0     0     0     0     0     0     0     0
##           356        0     0     0     0     0     0     0     0     0
##           357        0     0     0     0     0     0     0     0     0
##           358        0     0     0     0     0     0     0     0     0
##           365        0     0     0     0     0     0     0     0     0
##           366        0     0     0     0     0     0     0     0     0
##           368        0     0     0     0     0     0     0     0     0
##           369        0     0     0     0     0     0     0     0     0
##           371        0     0     0     0     0     0     0     0     0
##           373        0     0     0     0     0     0     0     0     0
##           375        0     0     0     0     0     0     0     0     0
##           377        0     0     0     0     0     0     0     0     0
##           378        0     0     0     0     0     0     0     0     0
##           379        0     0     0     0     0     0     0     0     0
##           380        0     0     0     0     0     0     0     0     0
##           381        0     0     0     0     0     0     0     0     0
##           382        0     0     0     0     0     0     0     0     0
##           383        0     0     0     0     0     0     0     0     0
##           384        0     0     0     0     0     0     0     0     0
##           386        0     0     0     0     0     0     0     0     0
##           387        0     0     0     0     0     0     0     0     0
##           390        0     0     0     0     0     0     0     0     0
##           391        0     0     0     0     0     0     0     0     0
##           392        0     0     0     0     0     0     0     0     0
##           393        0     0     0     0     0     0     0     0     0
##           395        0     0     0     0     0     0     0     0     0
##           396        0     0     0     0     0     0     0     0     0
##           397        0     0     0     0     0     0     0     0     0
##           398        0     0     0     0     0     0     0     0     0
##           399        0     0     0     0     0     0     0     0     0
##           400        0     0     0     0     0     0     0     0     0
##           401        0     0     0     0     0     0     0     0     0
##           402        0     0     0     0     0     0     0     0     0
##           403        0     0     0     0     0     0     0     0     0
##           404        0     0     0     0     0     0     0     0     0
##           407        0     0     0     0     0     0     0     0     0
##           408        0     0     0     0     0     0     0     0     0
##           410        0     0     0     0     0     0     0     0     0
##           411        0     0     0     0     0     0     0     0     0
##           412        0     0     0     0     0     0     0     0     0
##           413        0     0     0     0     0     0     0     0     0
##           414        0     0     0     0     0     0     0     0     0
##           416        0     0     0     0     0     0     0     0     0
##           417        0     0     0     0     0     0     0     0     0
##           419        0     0     0     0     0     0     0     0     0
##           420        0     0     0     0     0     0     0     0     0
##           421        0     0     0     0     0     0     0     0     0
##           422        0     0     0     0     0     0     0     0     0
##           423        0     0     0     0     0     0     0     0     0
##           424        0     0     0     0     0     0     0     0     0
##           425        0     0     0     0     0     0     0     0     0
##           426        0     0     0     0     0     0     0     0     0
##           427        0     0     0     0     0     0     0     0     0
##           428        0     0     0     0     0     0     0     0     0
##           429        0     0     0     0     0     0     0     0     0
##           430        0     0     0     0     0     0     0     0     0
##           431        0     0     0     0     0     0     0     0     0
##           432        0     0     0     0     0     0     0     0     0
##           434        0     0     0     0     0     0     0     0     0
##           435        0     0     0     0     0     0     0     0     0
##           436        0     0     0     0     0     0     0     0     0
##           437        0     0     0     0     0     0     0     0     0
##           438        0     0     0     0     0     0     0     0     0
##           440        0     0     0     0     0     0     0     0     0
##           441        0     0     0     0     0     0     0     0     0
##           444        0     0     0     0     0     0     0     0     0
##           445        0     0     0     0     0     0     0     0     0
##           446        0     0     0     0     0     0     0     0     0
##           447        0     0     0     0     0     0     0     0     0
##           448        0     0     0     0     0     0     0     0     0
##           449        0     0     0     0     0     0     0     0     0
##           450        0     0     0     0     0     0     0     0     0
##           451        0     0     0     0     0     0     0     0     0
##           452        0     0     0     0     0     0     0     0     0
##           454        0     0     0     0     0     0     0     0     0
##           455        0     0     0     0     0     0     0     0     0
##           456        0     0     0     0     0     0     0     0     0
##           458        0     0     0     0     0     0     0     0     0
##           459        0     0     0     0     0     0     0     0     0
##           460        0     0     0     0     0     0     0     0     0
##           461        0     0     0     0     0     0     0     0     0
##           462        0     0     0     0     0     0     0     0     0
##           463        0     0     0     0     0     0     0     0     0
##           464        0     0     0     0     0     0     0     0     0
##           465        0     0     0     0     0     0     0     0     0
##           466        0     0     0     0     0     0     0     0     0
##           467        0     0     0     0     0     0     0     0     0
##           468        0     0     0     0     0     0     0     0     0
##           469        0     0     0     0     0     0     0     0     0
##           471        0     0     0     0     0     0     0     0     0
##           472        0     0     0     0     0     0     0     0     0
##           473        0     0     0     0     0     0     0     0     0
##           474        0     0     0     0     0     0     0     0     0
##           475        0     0     0     0     0     0     0     0     0
##           476        0     0     0     0     0     0     0     0     0
##           477        0     0     0     0     0     0     0     0     0
##           478        0     0     0     0     0     0     0     0     0
##           480        0     0     0     0     0     0     0     0     0
##           482        0     0     0     0     0     0     0     0     0
##           483        0     0     0     0     0     0     0     0     0
##           484        0     0     0     0     0     0     0     0     0
##           485        0     0     0     0     0     0     0     0     0
##           486        0     0     0     0     0     0     0     0     0
##           488        0     0     0     0     0     0     0     0     0
##           489        0     0     0     0     0     0     0     0     0
##           490        0     0     0     0     0     0     0     0     0
##           492        0     0     0     0     0     0     0     0     0
##           493        0     0     0     0     0     0     0     0     0
##           494        0     0     0     0     0     0     0     0     0
##           495        0     0     0     0     0     0     0     0     0
##           496        0     0     0     0     0     0     0     0     0
##           497        0     0     0     0     0     0     0     0     0
##           498        0     0     0     0     0     0     0     0     0
##           500        0     0     0     0     0     0     0     0     0
##           501        0     0     0     0     0     0     0     0     0
##           502        0     0     0     0     0     0     0     0     0
##           503        0     0     0     0     0     0     0     0     0
##           504        0     0     0     0     0     0     0     0     0
##           505        0     0     0     0     0     0     0     0     0
##           506        0     0     0     0     0     0     0     0     0
##           507        0     0     0     0     0     0     0     0     0
##           508        0     0     0     0     0     0     0     0     0
##           510        0     0     0     0     0     0     0     0     0
##           511        0     0     0     0     0     0     0     0     0
##           512        0     0     0     0     0     0     0     0     0
##           513        0     0     0     0     0     0     0     0     0
##           514        0     0     0     0     0     0     0     0     0
##           515        0     0     0     0     0     0     0     0     0
##           516        0     0     0     0     0     0     0     0     0
##           517        0     0     0     0     0     0     0     0     0
##           518        0     0     0     0     0     0     0     0     0
##           519        0     0     0     0     0     0     0     0     0
##           520        0     0     0     0     0     0     0     0     0
##           521        0     0     0     0     0     0     0     0     0
##           522        0     0     0     0     0     0     0     0     0
##           523        0     0     0     0     0     0     0     0     0
##           525        0     0     0     0     0     0     0     0     0
##           526        0     0     0     0     0     0     0     0     0
##           527        0     0     0     0     0     0     0     0     0
##           528        0     0     0     0     0     0     0     0     0
##           529        0     0     0     0     0     0     0     0     0
##           530        0     0     0     0     0     0     0     0     0
##           531        0     0     0     0     0     0     0     0     0
##           532        0     0     0     0     0     0     0     0     0
##           533        0     0     0     0     0     0     0     0     0
##           534        0     0     0     0     0     0     0     0     0
##           535        0     0     0     0     0     0     0     0     0
##           536        0     0     0     0     0     0     0     0     0
##           537        0     0     0     0     0     0     0     0     0
##           538        0     0     0     0     0     0     0     0     0
##           539        0     0     0     0     0     0     0     0     0
##           541        0     0     0     0     0     0     0     0     0
##           542        0     0     0     0     0     0     0     0     0
##           544        0     0     0     0     0     0     0     0     0
##           545        0     0     0     0     0     0     0     0     0
##           546        0     0     0     0     0     0     0     0     0
##           547        0     0     0     0     0     0     0     0     0
##           548        0     0     0     0     0     0     0     0     0
##           549        0     0     0     0     0     0     0     0     0
##           550        0     0     0     0     0     0     0     0     0
##           552        0     0     0     0     0     0     0     0     0
##           553        0     0     0     0     0     0     0     0     0
##           555        0     0     0     0     0     0     0     0     0
##           556        0     0     0     0     0     0     0     0     0
##           557        0     0     0     0     0     0     0     0     0
##           558        0     0     0     0     0     0     0     0     0
##           559        0     0     0     0     0     0     0     0     0
##           560        0     0     0     0     0     0     0     0     0
##                 
## filteredTestPred 69100
##           4          0
##           23         0
##           41         0
##           45         0
##           47         0
##           48         0
##           51         0
##           60         0
##           64         0
##           66         0
##           70         0
##           80         0
##           82         0
##           84         0
##           86         0
##           87         0
##           88         0
##           90         0
##           91         0
##           95         0
##           97         0
##           98         0
##           99         0
##           102        0
##           106        0
##           109        0
##           111        0
##           116        0
##           119        0
##           123        0
##           127        0
##           129        0
##           130        0
##           134        0
##           135        0
##           137        0
##           138        0
##           140        0
##           141        0
##           143        0
##           144        0
##           146        0
##           149        0
##           150        0
##           151        0
##           154        0
##           158        0
##           160        0
##           162        0
##           163        0
##           168        0
##           176        0
##           178        0
##           180        0
##           181        0
##           183        0
##           186        0
##           190        0
##           191        0
##           192        0
##           196        0
##           201        0
##           202        0
##           205        0
##           206        0
##           211        0
##           213        0
##           215        0
##           217        0
##           218        0
##           221        0
##           223        0
##           224        0
##           226        0
##           228        0
##           233        0
##           236        0
##           237        0
##           238        0
##           240        0
##           241        0
##           245        0
##           246        0
##           248        0
##           250        0
##           251        0
##           256        0
##           258        0
##           261        0
##           262        0
##           264        0
##           266        0
##           268        0
##           269        0
##           277        0
##           278        0
##           279        0
##           280        0
##           285        0
##           286        0
##           287        0
##           292        0
##           294        0
##           295        0
##           296        0
##           300        0
##           301        0
##           302        0
##           305        0
##           308        0
##           309        0
##           313        0
##           317        0
##           318        0
##           321        0
##           322        0
##           324        0
##           325        0
##           326        0
##           331        0
##           336        0
##           339        0
##           340        0
##           341        0
##           342        0
##           343        0
##           346        0
##           348        0
##           349        0
##           350        0
##           354        0
##           356        0
##           357        0
##           358        0
##           365        0
##           366        0
##           368        0
##           369        0
##           371        0
##           373        0
##           375        0
##           377        0
##           378        0
##           379        0
##           380        0
##           381        0
##           382        0
##           383        0
##           384        0
##           386        0
##           387        0
##           390        0
##           391        0
##           392        0
##           393        0
##           395        0
##           396        0
##           397        0
##           398        0
##           399        0
##           400        0
##           401        0
##           402        0
##           403        0
##           404        0
##           407        0
##           408        0
##           410        0
##           411        0
##           412        0
##           413        0
##           414        0
##           416        0
##           417        0
##           419        0
##           420        0
##           421        0
##           422        0
##           423        0
##           424        0
##           425        0
##           426        0
##           427        0
##           428        0
##           429        0
##           430        0
##           431        0
##           432        0
##           434        0
##           435        0
##           436        0
##           437        0
##           438        0
##           440        0
##           441        0
##           444        0
##           445        0
##           446        0
##           447        0
##           448        0
##           449        0
##           450        0
##           451        0
##           452        0
##           454        0
##           455        0
##           456        0
##           458        0
##           459        0
##           460        0
##           461        0
##           462        0
##           463        0
##           464        0
##           465        0
##           466        0
##           467        0
##           468        0
##           469        0
##           471        0
##           472        0
##           473        0
##           474        0
##           475        0
##           476        0
##           477        0
##           478        0
##           480        0
##           482        0
##           483        0
##           484        0
##           485        0
##           486        0
##           488        0
##           489        0
##           490        0
##           492        0
##           493        0
##           494        0
##           495        0
##           496        0
##           497        0
##           498        0
##           500        0
##           501        0
##           502        0
##           503        0
##           504        0
##           505        0
##           506        0
##           507        0
##           508        0
##           510        0
##           511        0
##           512        0
##           513        0
##           514        0
##           515        0
##           516        0
##           517        0
##           518        0
##           519        0
##           520        0
##           521        0
##           522        0
##           523        0
##           525        0
##           526        0
##           527        0
##           528        0
##           529        0
##           530        0
##           531        0
##           532        0
##           533        0
##           534        0
##           535        0
##           536        0
##           537        0
##           538        0
##           539        0
##           541        0
##           542        0
##           544        0
##           545        0
##           546        0
##           547        0
##           548        0
##           549        0
##           550        0
##           552        0
##           553        0
##           555        0
##           556        0
##           557        0
##           558        0
##           559        0
##           560        0
##  [ reached getOption("max.print") -- omitted 727 rows ]